当前位置:Gxlcms > 数据库问题 > Linux下Mongodb安装和启动配置

Linux下Mongodb安装和启动配置

时间:2021-07-01 10:21:17 帮助过:28人阅读

  1. --logpath 日志文件路径
  2. --master 指定为主机器
  3. --slave 指定为从机器
  4. --source 指定主机器的IP地址
  5. --pologSize 指定日志文件大小不超过64M.因为resync是非常操作量大且耗时,最好通过设置一个足够大的oplogSize来避免resync(默认的 oplog大小是空闲磁盘大小的5%)。
  6. --logappend 日志文件末尾添加
  7. --port 启用端口号
  8. --fork 在后台运行
  9. --only 指定只复制哪一个数据库
  10. --slavedelay 指从复制检测的时间间隔
  11. --auth 是否需要验证权限登录(用户名和密码)
  12. -h [ --help ] show this usage information
  13. --version show version information
  14. -f [ --config ] arg configuration file specifying additional options
  15. --port arg specify port number
  16. --bind_ip arg local ip address to bind listener - all local ips
  17. bound by default
  18. -v [ --verbose ] be more verbose (include multiple times for more
  19. verbosity e.g. -vvvvv)
  20. --dbpath arg (=/data/db/) directory for datafiles 指定数据存放目录
  21. --quiet quieter output 静默模式
  22. --logpath arg file to send all output to instead of stdout 指定日志存放目录
  23. --logappend appnd to logpath instead of over-writing 指定日志是以追加还是以覆盖的方式写入日志文件
  24. --fork fork server process 以创建子进程的方式运行
  25. --cpu periodically show cpu and iowait utilization 周期性的显示cpu和io的使用情况
  26. --noauth run without security 无认证模式运行
  27. --auth run with security 认证模式运行
  28. --objcheck inspect client data for validity on receipt 检查客户端输入数据的有效性检查
  29. --quota enable db quota management 开始数据库配额的管理
  30. --quotaFiles arg number of files allower per db, requires --quota 规定每个数据库允许的文件数
  31. --appsrvpath arg root directory for the babble app server
  32. --nocursors diagnostic/debugging option 调试诊断选项
  33. --nohints ignore query hints 忽略查询命中率
  34. --nohttpinterface disable http interface 关闭http接口,默认是28017
  35. --noscripting disable scripting engine 关闭脚本引擎
  36. --noprealloc disable data file preallocation 关闭数据库文件大小预分配
  37. --smallfiles use a smaller default file size 使用较小的默认文件大小
  38. --nssize arg (=16) .ns file size (in MB) for new databases 新数据库ns文件的默认大小
  39. --diaglog arg 0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是只读,只写,还是读写都行,还是主要写+部分的读模式
  40. --sysinfo print some diagnostic system information 打印系统诊断信息
  41. --upgrade upgrade db if needed 如果需要就更新数据库
  42. --repair run repair on all dbs 修复所有的数据库
  43. --notablescan do not allow table scans 不运行表扫描
  44. --syncdelay arg (=60) seconds between disk syncs (0 for never) 系统同步刷新磁盘的时间,默认是60s
  45. Replication options:
  46. --master master mode 主复制模式
  47. --slave slave mode 从复制模式
  48. --source arg when slave: specify master as <server:port> 当为从时,指定主的地址和端口
  49. --only arg when slave: specify a single database to replicate 当为从时,指定需要从主复制的单一库
  50. --pairwith arg address of server to pair with
  51. --arbiter arg address of arbiter server 仲裁服务器,在主主中和pair中用到
  52. --autoresync automatically resync if slave data is stale 自动同步从的数据
  53. --oplogSize arg size limit (in MB) for op log 指定操作日志的大小
  54. --opIdMem arg size limit (in bytes) for in memory storage of op ids指定存储操作日志的内存大小
  55. Sharding options:
  56. --configsvr declare this is a config db of a cluster 指定shard中的配置服务器
  57. --shardsvr declare this is a shard db of a cluster 指定shard服务器
技术分享   6. 进入数据库的CLI管理界面 cd到mongodb目录下的bin文件夹,执行命令./mongo 运行如下:
  1. [root@namenode mongodb]# ./bin/mongo
  2. MongoDB shell version: 1.8.2
  3. connecting to: test
  4. > use test;
  5. switched to db test
  若数据库出现如不能连上,则是一个data目录下的mongod.lock文件的问题,可以用如下的修复的命令,
  1. mongod --repair<br><br><br><br>转载文章URL:http://www.cnblogs.com/xiaoqian1993/p/5936648.html

Linux下Mongodb安装和启动配置

标签:解释   默认   writing   空闲   nal   ddr   replica   执行   安装   

人气教程排行