假設服務名為postfix
啟動乙個服務:
systemctl start postfix.service
關閉乙個服務:
systemctl stop postfix.service
重啟乙個服務:
systemctl restart postfix.service
顯示乙個服務的狀態:
systemctl status postfix.service
在開機時啟用乙個服務:systemctl enable postfix.service
在開機時禁用乙個服務:systemctl disable postfix.service
檢視服務是否開機啟動:systemctl is-enabled postfix.service
以上.service可省略
檢視已啟動的服務列表:systemctl list-unit-files | grep enabled
檢視啟動失敗的服務列表:systemctl --failed
Linux相關命令 Centos7
一 防火牆相關 1.查詢防火牆狀態 systemctl status firewalld當顯示 firewalld.service loaded not found reason no such file or directory 時 2.安裝iptables services yum instal...
Centos7服務systemctl命令
centos7的服務啟動,停止等命令和以前版本已經不一樣了,用全新的命令了,下面主要給大家介紹我經常使用的一些服務的命令 1.httpd開機自啟動 systemctl enable httpd.service2.httpd開機不自啟動 systemctl disable httpd.service3...
centos7後台切換的相關命令
一 加在乙個命令的最後,可以把這個命令放到後台執行,如 watch n 10 sh test.sh 每10s在後台執行一次test.sh指令碼 二 ctrl z 可以將乙個正在前台執行的命令放到後台,並且處於暫停狀態。三 jobs 檢視當前有多少在後台執行的命令 jobs l選項可顯示所有任務的pi...