systemctl 啟動/關閉/啟用/禁用服務 總結
阿新 • • 發佈:2020-12-15
啟動服務
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