Home >Database >Mysql Tutorial >MongoDB 带验证的主从复制

MongoDB 带验证的主从复制

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 17:09:381031browse

Mongodb 不带验证的主从复制,只是一台配置角色为master 和 oplog大少,另一个配置角色为slave和 master的IP PORT 启动就可以了。

Mongodb 不带验证的主从复制,只是一台配置角色为master 和 oplog大少,另一个配置角色为slave和 master的IP PORT 启动就可以了。

如果是带验证的就要麻烦点了。

Master:

1.以single模式启动;

2.登录admin,配置超级管理员,db.addUser('root','root');

3.use local;db.addUser('repl','replicate');   db.auth('repl','replicate');

后一句可不用

4.添加--auth 参数,,然后以Master角色启动

Slave:

1.以single模式启动;

2.登录admin,配置超级管理员,db.addUser('root','root');

3.use local;db.addUser('repl','replicate');   db.auth('repl','replicate');

后一句可不用

4.添加--auth 参数,然后以Slave角色启动

linux

Statement:
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