CentOS 7 开放端口 防火墙centosfirewall
程序员文章站
2022-05-26 14:43:02
...
安装完web服务器后发现无法访问端口,后来发现是防火墙原因。解决方法:
PS:关闭防火墙命令:
[root@centos7 bin]# firewall-cmd --zone=public --add-port=8080/tcp --permanent success [root@centos7 bin]# firewall-cmd --reload success [root@centos7 bin]# firewall-cmd --zone=public --query-port=8080/tcp yes [root@centos7 bin]#
PS:关闭防火墙命令:
[root@centos7 bin]# firewall-cmd --state running [root@centos7 bin]# systemctl stop firewalld.service [root@centos7 bin]# firewall-cmd --state not running [root@centos7 bin]#
上一篇: 链表!比数组更适合做增删操作的数据结构
下一篇: JQ实现购物车全选跟总计全选
推荐阅读