阿里雲centos7.x 開啟80埠
一 :阿里雲centos7.x用iptables開啟80埠
1、安裝iptables:yum install iptables-services(阿里雲centos7 預設 是使用的firewall,所以要使用iptables需先安裝)
2、相看filrwall是否關閉:
檢視:systemctl status firewalld
啟動: systemctl start firewalld
關閉: systemctl stop firewalld
開機禁用 : systemctl disable firewalld
開機啟用 : systemctl enable firewalld
3、把埠加入到iptables中(加入之前,可使用iptables -L -n檢視埠情況)
指令:vim /etc/sysconfig/iptables
4、重啟iptables:systemctl restart iptables.service(重啟後,使用 iptables -L -n檢視)
二:centos7.x用firewall開啟80埠
1.關閉與開啟防火牆
啟動:systemctl start firewalld
關閉: systemctl stop firewalld
2.檢視防火牆是否開啟的狀態,以及開放埠的情況
systemctl status firewalld.service
firewall-cmd --list-all
3. 通過以下命令開放http 80 埠
firewall-cmd --add-port=80/tcp --permanent
命令末尾的--permanent表示用久有效,不加這句的話重啟後剛才開放的埠就又失效了
4 .然後重啟防火牆:
sudo firewall-cmd --reload
5. 再次檢視埠的開放情況:
firewall-cmd --list-all
ports:裡出現了 80 埠
三 OK後,還需在阿里雲控制檯上, 新增安全組規則。