1. 程式人生 > 其它 >systemctl 啟動/關閉/啟用/禁用服務 總結

systemctl 啟動/關閉/啟用/禁用服務 總結

技術標籤:Unix/Linux環境程式設計Linux

啟動服務

systemctl start test.service

關閉服務

systemctl stop test.service

重啟服務

systemctl restart test.service

顯示服務的狀態

systemctl status test.service

在開機時啟用服務

systemctl enable test.service

在開機時禁用服務

systemctl disable test.service

檢視服務是否開機啟動

systemctl is-enabled test.service

檢視已啟動的服務列表

systemctl list-unit-files|grep enabled

檢視啟動失敗的服務列表

systemctl --failed