Home > Database > Mysql Tutorial > MongoDB 数据库M

MongoDB 数据库M

WBOY
Release: 2016-06-07 15:05:57
Original
1061 people have browsed it

http://blog.chinaunix.net/uid-24086995-id-1754660.html 在同一台机器上用2个不同的端口,启动mongodb 在数据库目录下建立2个新目录 [ root @ localhost ~ ] # mkdir / data / db / master [ root @ localhost ~ ] # mkdir / data / db / slave 主:只需要

http://blog.chinaunix.net/uid-24086995-id-1754660.html


在同一台机器上用2个不同的端口,启动mongodb
在数据库目录下建立2个新目录

  1. [root@localhost ~]# mkdir /data/db/master
 [root@localhost ~]# mkdir /data/db/slave
主:只需要带上--master参数,表明这是个主就可以了,相当的方便。

  1. [root@localhost ~]# /usr/local/bin/mongod --master -dbpath=/data/db/master -port=11536 &
  2. [1] 10939
  3. [root@localhost ~]# Mon Jul 25 20:21:59 [initandlisten] MongoDB starting : pid=10939 port=11536 dbpath=/data/db/master master=1 32-bit

从:带上--slave参数指明是个从,指定--source,主的地址和端口,就可以了,比MYSQL方便很多。

  1. [root@localhost bin]# /usr/local/bin/mongod -port 11537 --slave -dbpath=/data/db/slave --source 127.0.0.1:11536
  2. Mon Jul 25 20:25:52 [initandlisten] MongoDB starting : pid=11158 port=11537 dbpath=/data/db/slave slave=1 32-bit
新开一个终端,登录11536(主),并写入一条记录

  1. [root@localhost ~]# /usr/local/bin/mongo --port=11536
  2. MongoDB shell version: 1.8.2
  3. connecting to: 127.0.0.1:11536/test
  4. > use brucezuo
  5. switched to db brucezuo
  6. > db.createCollection("table1")
  7. { "ok" : 1 }
  8. > db.table1.insert({id:1,name:"zxy",age:29})
  9. >
新开一个终端,登录11537(从),查看数据是否一致

  1. [root@localhost ~]# /usr/local/bin/mongo --port=11537
  2. MongoDB shell version: 1.8.2
  3. connecting to: 127.0.0.1:11537/test
  4. > show dbs
  5. admin (empty)
  6. brucezuo 0.0625GB
  7. local 0.0625GB
  8. > use brucezuo
  9. switched to db brucezuo
  10. > db.table1.find()
  11. { "_id" : ObjectId("4e2e348ed502dbae1aee469e"), "id" : 1, "name" : "zxy", "age" : 29 }
  12. >
两端数据完全一致。

从上面的测试来看,mongodb对主从复制的配置比MYSQL要方便太多了。


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template