link 发表于 2018-10-27 13:13:53

MongoDB配置主从同步(二)

配置MongoDB 主从同步  主:命令行启动方式
/usr/local/mongodb/bin/mongod --bind_ip 192.168.137.12 --port 27017 --dbpath /data/mongodb/db1/ --logpath /data/mongodb/logs/m1.log --logappend --rest --master &  从:命令行启动方式
/usr/local/mongodb/bin/mongod --bind_ip 192.168.137.13 --port 27017 --dbpath /data/mongodb/db1/ --logpath /data/mongodb/logs/m1.log --logappend --rest --slave --source 192.168.137.12:27017 &  或者用配置文件方式启动
  master配置文件
port = 27017  fork = true
  dbpath = /data/mongodb/db1/
  logpath = /data/mongodb/logs/m1.log
  logappend = true
  auth = true
  bind_ip = 192.168.137.12
  rest = true
  master = true
  slave配置文件
port = 27017  fork = true
  dbpath = /data/mongodb/db1/
  logpath = /data/mongodb/logs/m1.log
  logappend = true
  auth = true
  bind_ip = 192.168.137.13
  rest = true
  slave = true
  source = 192.168.137.12:27017
  启动方式
/usr/local/mongodb/bin/mongod -f /etc/mongodb.conf  创建用户repl,主要用于后续的安全认证同步
  master 和slave都要操作
>use local  switched to db local
  > db.addUser('repl','123456')
  {
  "user" : "repl",
  "readOnly" : false,
  "pwd" : "6a554a536c461b904f0cabea13dd6270",
  "_id" : ObjectId("51530379b6a41430e9ab5462")
  }
  连接测试数据同步情况
  master操作
http://blog.51cto.com/qq15570453/../attachment/201303/115316833.jpg
  slave操作
http://blog.51cto.com/qq15570453/../attachment/201303/115527541.jpg
  同步配置成功
  状态查询
  1.db.runCommand({"isMaster":1})查询是主还是从
  2.在丛库上查询主库地址
  >use local
  >db.sources.find();
  3. db.printCollectionStats(); 查看各Collection状态
  4. db.printReplicationInfo();查看主从复制状态
  状态切换,如果master宕机了用slave来顶替master服务
  1.停止从库
  2.删除从库数据目录下的local.* jourabl文件夹
  3.以master方式启动从库
  附:各启动参数的说明停止从库
  参数解释: --dbpath 数据库路径(数据文件)
  --logpath 日志文件路径
  --master 指定为主机器
  --slave 指定为从机器
  --source 指定主机器的IP地址
  --pologSize 命令行参数(与--master一同使用)配置用于存储给从节点可用的更新信息占用的磁盘空间(M为单位),如果不指定这个参数
  ,默认大小为当前可用磁盘空间的5%(64位机器最小值为1G,32位机器为50M)。
  --logappend 日志文件末尾添加
  --port 启用端口号
  --fork 在后台运行
  --only 指定只复制哪一个数据库
  --slavedelay 指从复制检测的时间间隔
  --auth 是否需要验证权限登录(用户名和密码)
  -h [ --help ]             show this usage information
  --version               show version information
  -f [ --config ] arg       configuration file specifying additional options
  --port arg                specify port number
  --bind_ip arg             local ip address to bind listener - all local ips
  bound by default
  -v [ --verbose ]          be more verbose (include multiple times for more
  verbosity e.g. -vvvvv)
  --dbpath arg (=/data/db/) directory for datafiles    指定数据存放目录
  --quiet                   quieter output   静默模式
  --logpath arg             file to send all output to instead of stdout   指定日志存放目录
  --logappend               appnd to logpath instead of over-writing 指定日志是以追加还是以覆盖的方式写入日志文件
  --fork                  fork server process   以创建子进程的方式运行
  --cpu                     periodically show cpu and iowait utilization 周期性的显示cpu和io的使用情况
  --noauth                  run without security 无认证模式运行
  --auth                  run with security 认证模式运行
  --objcheck                inspect client data for validity on receipt 检查客户端输入数据的有效性检查
  --quota                   enable db quota management   开始数据库配额的管理
  --quotaFiles arg          number of files allower per db, requires --quota 规定每个数据库允许的文件数
  --appsrvpath arg          root directory for the babble app server
  --nocursors               diagnostic/debugging option 调试诊断选项
  --nohints               ignore query hints 忽略查询命中率
  --nohttpinterface         disable http interface 关闭http接口,默认是28017
  --noscripting             disable scripting engine 关闭脚本引擎
  --noprealloc            disable data file preallocation 关闭数据库文件大小预分配

  --smallfiles            use a smaller default file>
  --nssize arg (=16)      .ns file>  --diaglog arg             0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是只读,只写,还是读写都行,还是主要写+部分的读模
  式
  --sysinfo               print some diagnostic system information 打印系统诊断信息
  --upgrade               upgrade db if needed 如果需要就更新数据库
  --repair                  run repair on all dbs 修复所有的数据库
  --notablescan             do not allow table scans 不运行表扫描
  --syncdelay arg (=60)   seconds between disk syncs (0 for never) 系统同步刷新磁盘的时间,默认是60s
  Replication options:
  --master            master mode 主复制模式
  --slave               slave mode 从复制模式
  --source arg          when slave: specify master as当为从时,指定主的地址和端口
  --only arg            when slave: specify a single database to replicate 当为从时,指定需要从主复制的单一库
  --pairwith arg      address of server to pair with
  --arbiter arg         address of arbiter server 仲裁服务器,在主主中和pair中用到
  --autoresync          automatically resync if slave data is stale 自动同步从的数据

  --oplogSize arg      >
  --opIdMem arg      >  Sharding options:
  --configsvr         declare this is a config db of a cluster 指定shard中的配置服务器
  --shardsvr            declare this is a shard db of a cluster 指定shard服务器

页: [1]
查看完整版本: MongoDB配置主从同步(二)