centos7 开放mongodb端口
CentOS 7 默认没有使用iptables,所以通过编辑iptables的配置文件来开启端口是不可以的
CentOS 7 采用了 firewalld 防火墙
如要查询是否开启27019端口则:
1
2
|
[root@joe-pc ~] # firewall-cmd --query-port=27019/tcp no |
显然27019端口没有开启
下面我们开启27019端口:
1
2
|
[root@joe-pc ~] # firewall-cmd --add-port=27019/tcp success |