1. 程式人生 > >systemd管理服務

systemd管理服務

systemd管理服務

技術分享圖片
systemd是centos7版本的服務管理的一個機制
#systemctl list-units --all --type=service //列出所有的service類型的
常用的幾個服務相關的命令:
#systemctl enable crond.service //讓服務開機啟動
#systemctl disable crond.service //不/讓服務開機啟動
#systemctl status crond.service //查看狀態
#systemctl stop crond.service //停止服務
#systemctl start crond.service //啟動服務
#systemctl restart crond.service //重啟服務
#systemctl is-enabled crond.service //檢查服務是否開機啟動

systemd管理服務