windows访问虚拟机CentOS7里面的mongo,centos7开启防火墙端口

windows访问centos7里面的mongo
-----------------------------------------------------------------------
参考链接:https://blog.csdn.net/qq965194745/article/details/79285536

 

1.需要对centos7的配置做若干修改:


 

vi /etc/mongod.conf

将绑定ip改为0.0.0.0(请注意配置文件里面的空格,在python中,空格也是一种语法

bindIp: 0.0.0.0

 

 2.防火墙开启端口(永久


 

参考地址:https://blog.csdn.net/zx110503/article/details/78787483

默认情况下centos的端口是不对外开放的。

对外开放mongod 的 27017 需要设置防火墙。

2.1、运行命令:

firewall-cmd --get-active-zones

2.2、执行如下命令命令:

firewall-cmd --zone=public --add-port=27017/tcp --permanent

2.3、重启防火墙,运行命令:

firewall-cmd --reload

2.4、查看端口号是否开启,运行命令:

firewall-cmd --query-port=27017/tcp

 

3.重启mongo


 

sudo systemctl restart mongod

然后就可以在windows下面访问虚拟机CentOS7系统里面的mongo了。

 

posted @ 2020-05-13 11:15  He_LiangLiang  阅读(832)  评论(0编辑  收藏  举报