欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mongodb 实现远程连接

程序员文章站 2022-11-21 09:46:16
mongodb远程连接配配置,分以下4步。 1,添加管理员账 > use admin switched to db admin > db.a...

mongodb远程连接配配置,分以下4步。
1,添加管理员账

> use admin 
switched to db admin 
> db.adduser('tank','test'); 

2,配置mongodb.conf

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

 
3,重启mongodb

/etc/init.d/mongod 

4,防火墙开放27017端口

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

5,测试

mongodb 实现远程连接

mongdb 远程连接