最近在做乙個分布式系統,需要使用zookeeper等工具,在安裝使用tomcat後本地訪問沒有問題
但是在瀏覽器使用ip:8080則無法顯示tomcat頁面
centos7.x預設使用的是firewalld防火牆,如果在前面的嘗試方法中使用了iptables來管理防火牆,並且啟動了iptables,則firewalld防火牆鎖定,使用firewalld命令則提示如下錯誤
首先解鎖firewalld防火牆,才能使用firewalld命令
systemctl unmask firewalld使用如下命令,來檢視firewalld已經開放的埠
firewall-cmd --list-ports如果沒有你想要的埠號,則需要在防火牆上面新增埠號
irewall-cmd --zone=public --add-port=8080/tcp --permanent重啟防火牆permanent的作用是使設定永久生效
systemctl stop firewalld.service最後重新訪問即systemctl start firewalld.service
阿里雲centos7 x 開啟80埠
1 安裝iptables yum install iptables services 阿里雲centos7 預設 是使用的firewall,所以要使用iptables需先安裝 2 相看filrwall是否關閉 檢視 systemctl status firewalld 啟動 systemctl st...
CentOS 7 x 配置靜態 IP 並啟用
通過查詢本機的ip,發現本機並沒有有效ip pan localhost ip addr所以,我們需要設定本機的靜態ip,並啟用配置。那我們該如何實現這個目的呢?本機的網路裝置名稱 ens33。於是我們嘗試在系統中查詢帶有 ens33 的檔案 pan localhost sudo find name ...
CentOS 7 X 安全手記
一 安裝雲鎖 1 報錯 2 關閉selinux vim etc selinux config 將 selinux enforcing 改 selinux disabled 3 重啟系統 reboot now 二 centos7相關的操作 1 防火牆 firewall cmd 1 禁止被ping 禁止...