centos開啟關閉指定埠(防火牆應用)

2021-10-05 06:37:08 字數 632 閱讀 6619

##檢視防火牆

systemctl status firewalld

##開啟防火牆

systemctl start firewalld

##關閉防火牆

systemctl stop firewalld

##防火牆開機啟動

systemctl enable firewalld

##檢視防火牆所有開放的埠

firewall-cmd --zone=public --list-ports

##開放和關閉埠

firewall-cmd --zone=public --add-port=5672/tcp --permanent # 開放5672埠

firewall-cmd --zone=public --remove-port=5672/tcp --permanent #關閉5672埠

firewall-cmd --reload # 配置立即生效

##檢視監聽埠

netstat -lnpt

##檢查埠被哪個程序占用

netstat -lnpt |grep 5672

##檢視程序的詳細資訊

ps 6832

##中止程序

kill -9 6832

CentOS7開啟 關閉埠

centos7使用的是firewall防火牆,不再是原來的iptables 1 檢視firewall防火牆狀態 firewall cmd state 或者systemctl status firewalld 2 開啟防火牆 systemctl start firewalld 3 關閉防火牆 syst...

CentOS7開啟 關閉埠

centos7使用的是firewall防火牆,不再是原來的iptables 1 檢視firewall防火牆狀態 firewall cmd state 或者systemctl status firewalld 2 開啟防火牆 systemctl start firewalld 3 關閉防火牆 syst...

開啟centos中指定的埠

今天,想通過第三方工具遠端連線雲伺服器上的mysql server,但是一直連不上,原本以為是在資料庫中的mysql.user表中沒有設定host為 也就是說沒有設定為任意ip都可以進行連線 但是查過以後發現其實已經設定過了。既然這個已經設定好了,mysql server執行正常,那就是防火牆的問題...