阿里雲centos7 x 開啟80埠

2021-08-28 08:05:50 字數 1585 閱讀 5338

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檢視)

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 埠

阿里雲Centos7 x解決IP 8080不能訪問

最近在做乙個分布式系統,需要使用zookeeper等工具,在安裝使用tomcat後本地訪問沒有問題 但是在瀏覽器使用ip 8080則無法顯示tomcat頁面 centos7.x預設使用的是firewalld防火牆,如果在前面的嘗試方法中使用了iptables來管理防火牆,並且啟動了iptables,...

CentOS 7 X 安全手記

一 安裝雲鎖 1 報錯 2 關閉selinux vim etc selinux config 將 selinux enforcing 改 selinux disabled 3 重啟系統 reboot now 二 centos7相關的操作 1 防火牆 firewall cmd 1 禁止被ping 禁止...

CentOS7 X磁碟掛載

假設掛載點為 www 假設磁碟為 dev vdc 假設磁碟只有卷 dev vdc1 該方案可能會丟失磁碟所有資料,操作前請先備份 磁碟已格式化 用過的磁碟 磁碟立即掛載 mkdir www mount dev vdc1 www 啟用開機掛載 獲取磁碟id ll dev disk by path lr...