Centos7開機啟動項目分為system和user兩種類型
例如像mysql這種不用登陸就可以運行的就是system型,放在/usr/lib/systemd/system下,反之,用戶登入後才能運行的程序,存在用戶(user)裡。
假如我自訂了一個系統服務,叫mytest.server,檔案格式可參考system目錄下的其他檔案。
執行 systemctl enable mytest.service 設定開機自啟動
systemctl start mytest.service 啟動服務
systemctl status mytest.service 檢視狀態
查看開機項目
systemctl list-unit-files
以上是如何在CentOS 7中安裝自訂系統服務?的詳細內容。更多資訊請關注PHP中文網其他相關文章!