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,测试
mongdb 远程连接
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索远程连接
mongdb
mongodb 远程连接、mongodb远程连接不上、mongodb允许远程连接、mongodb开启远程连接、mongodb无法远程连接,以便于您获取更多的相关知识。
时间: 2024-10-29 11:54:57