方法二:
现在我们要构造1个master和1个slave
主从同步:
x1 192.168.0.188 master
x3 192.168.0.190 slave
我们先声明从服务器,然后再添加源
当然,首先要把主服务器打开,声明为主服务器
在x1中操作
①创建存放数据的文件夹
mkdir /data/master
以主服务器的方式启动:
进入mongodb的bin目录
启动mongodb
./mongod --master --dbpath /data/master --port 27017
从服务器的声明:
在x3操作:
①创建存放数据的文件夹
mkdir /data/slave
以从服务器的方式启动:
进入mongodb的bin目录
启动mongodb
./mongod --slave --dbpath /data/slave --port 27017
Ctrl+Alt+F2进入控制台2
登录
进入mongodb的shell
插入数据源
use local
db.sources.insert({“host”:"192.168.0.188:27017"})
PS:
移除数据源
db.sources.remove({“host”:"192.168.0.188:27017"})
验证一下在主服务器里插入数据,从服务器是否能同步:
在主服务器ctrl+alt+f2打开一个客户端
进入js编辑环境
进行数据插入:
db.a.save({line:"happy new year"})
然后我们在从服务器打开一个客户端 查看从服务器中是否有该条数据。
在从服务器ctrl+alt+f2打开一个客户端
进入js编辑环境
进行数据查询:
db.a.find({})
主从配置成功.
启动服务器的参数说明:
--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 size 使用较小的默认文件大小
--nssize arg (=16) .ns file size (in MB) for new databases 新数据库ns文件的默认大小
--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 |