centos關閉防火牆和關閉服務自啟動

2021-10-02 01:23:10 字數 653 閱讀 5335

一、檢視防火牆執行狀態

systemctl |grep firewalld.service

檢視其他服務執行狀態

systemctl |grep [服務程序的名稱]

二、關閉防火牆

systemctl stop firewalld.service

關閉其他的服務程序

systemctl stop [服務程序的名字]

三、關閉防火牆自啟動服務

systemctl disable firewalld.service

關閉其他服務自啟動

systemctl disable [服務程序的名字]

四、查詢自啟動服務

systemctl list-unit-files|grep firewalld.service

查詢其他的自啟動服務:

systemctl list-unit-files|grep [服務程序的名字]

我們對service和chkconfig兩個命令都不陌生,systemctl 是管**務的主要工具, 它整合了chkconfig 與 service功能於一體。

CentOS 關閉防火牆

centos 6 1 永久性生效,重啟後不會復原 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後復原 開啟 service iptables start 關閉 service iptables stop centos 7 s...

centos防火牆關閉操作

centos防火牆關閉操作 cnetos 6.5之前的版本 sudo service firewalld stop 停止服務 sudo service firewalld start 啟動服務 sudo service firewalld status 檢視狀態 centos7 sudo syste...

CentOS下關閉防火牆

centos 7.0預設使用的是firewall作為防火牆 1 檢視防火牆的狀態 命令 firewall cmd state 關閉後顯示notrunning,開啟後顯示running 2 從centos7開始使用systemctl來管理服務和程式,包括了service和chkconfig,我們可以通...