天天看点

MongoDB 远程连接

mongodb远程连接配配置,分以下4步。

1,添加管理员账

MongoDB 远程连接

> use admin  

switched to db admin  

> db.adduser('tank','test');  

 2,配置mongodb.conf

MongoDB 远程连接

#bind_ip = 127.0.0.1     //注释此行  

auth = true              //将此行前的注释去掉  

 3,重启mongodb

MongoDB 远程连接

/etc/init.d/mongod    

 4,防火墙开放27017端口开放

MongoDB 远程连接

iptables -a input -p tcp -m state --state new -m tcp --dport 27017 -j accept