SysV服務管理系統 例如 RedHat6等發行版service --status-all 檢視所有服務service servicename status 檢視指定服務狀態service servicename start|stop|restart 啟動|停止|重啟 指定服務systemd服務管理系統 如CentOS 7等systemctl is-enabled servicename.service #查詢服務是否開機啟動systemctl enable *.service #開機執行服務systemctl disable *.service #取消開機執行systemctl start *.service #啟動服務systemctl stop *.service #停止服務systemctl restart *.service #重啟服務systemctl reload *.service #重新載入服務配置檔案systemctl status *.service #查詢服務執行狀態systemctl --failed #顯示啟動失敗的服務
SysV服務管理系統 例如 RedHat6等發行版service --status-all 檢視所有服務service servicename status 檢視指定服務狀態service servicename start|stop|restart 啟動|停止|重啟 指定服務systemd服務管理系統 如CentOS 7等systemctl is-enabled servicename.service #查詢服務是否開機啟動systemctl enable *.service #開機執行服務systemctl disable *.service #取消開機執行systemctl start *.service #啟動服務systemctl stop *.service #停止服務systemctl restart *.service #重啟服務systemctl reload *.service #重新載入服務配置檔案systemctl status *.service #查詢服務執行狀態systemctl --failed #顯示啟動失敗的服務