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

CentOS 7 开放端口 防火墙centosfirewall

程序员文章站 2022-05-26 14:43:02
...
安装完web服务器后发现无法访问端口,后来发现是防火墙原因。解决方法:

[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]#