tomcat開放埠號方法:
firewall-cmd --add-port=8080/tcp --permanent
其中--permanent 指的是永久開放。
firewall-cmd --reload
最後記得reload以下,出現success就是設定成功。我在執行命令時,出現firewalld is not running的報錯,用以下命令將firewalld起起來即可,並且允許其自啟動
systemctl start firewalld
systemctl enable firewalld
查詢埠是否開啟命令:
firewall-cmd --query-port=8080/tcp
centos虛擬機器實現主機宿主機訪問
centos虛擬機器實現主機宿主機訪問 需要兩塊網絡卡,一塊nat,一塊橋接 我用的是virtualbox 在 etc sysconfig network scripts中找到ifcfg ethx,x表示網絡卡數字,有eth0,eth1等等,根據安裝的網絡卡的多少,這邊依次出現 如果沒有eth1,則...
CentOS 7 開放3306埠訪問
centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...
CentOS 7 開放3306埠訪問
centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...