阿里雲centOS7開放埠

2021-10-23 11:08:34 字數 604 閱讀 2396

今天把專案在雲伺服器上搭起來了,然後發現訪問不了。。。目測是防火牆開著導致的。。把防火牆全關了好像也不太好,所以可以開放一些埠出來使用或者測試。

開放埠:

firewall-cmd --zone=public --add-port=8080/tcp --permanent
檢視開放的埠:

如果顯示如上應該就可以了

測試完要關閉埠也很簡單:

firewall-cmd --zone=public --remove-port=6379/tcp --permanent
當然無所謂的話把防火牆關了也是可以的:

systemctl stop firewalld.service
再開啟:

systemctl start firewalld.service

centos7 開放埠管理

centos7 用firewalld管理開放的埠 centos7預設安裝了firewalld,如果沒有安裝的話,可以使用yum install firewalld firewalld config進行安裝。常用命令 1.啟動防火牆 systemctl start firewalld2.禁用防火牆 s...

CentOS 7快速開放埠

一 centos 7快速開放埠 centos公升級到7之後,發現無法使用iptables控制linuxs的埠,baidu之後發現centos 7使用firewalld代替了原來的iptables。下面記錄如何使用firewalld開放linux埠 開啟埠 root centos7 firewall ...

CentOS 7 開放3306埠訪問

centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...