---何旭东
怀着感恩的心,回报大家 (2015年7月14日)
目录
环境介绍
服务/版本 | IP地址 | 主机名 |
MongoDB 主 /3.0.4 | 192.168.200.185 | mongodb.1.hxd |
MongoDB 从 /3.0.4 | 192.168.200.185 | mongodb.2.hxd |
注意:
防火墙
selinux
主服务器配置文件
[root@mongodb run]# cat /etc/mongodb.conf
port = 27017
dbpath = /usr/local/mongodb/data/
logpath =/usr/local/mongodb/logs/mongodb.log
logappend = true
journal = true
#pidfile = /var/run/mongodb.pid
fork = true
master = true
从服务器配置文件
[root@mongodb ~]# cat /etc/mongodb.conf
port = 27017
dbpath = /usr/local/mongodb/data/
logpath =/usr/local/mongodb/logs/mongodb.log
logappend = true
journal = true
#pidfile = /var/run/mongodb.pid
fork = true
master = true
连接测试
mongod -f /etc/mongodb.conf
具体可以查看mongod –help 帮助文件
主服务器进行写入测试
db.test.save( { a: 1 } )
从服务器查看状态
> show dbs;
local 2.077GB
test 0.078GB
> use test
switched to db test
> show collections;
system.indexes
test
> db.test.find()
{ "_id" : ObjectId("55a48bfb03a8ff3c6a51e14d"),"a" : 1 }