有些程式沒有包裝成 service 執行以此篇為記錄
先寫一個腳本或是程式 該腳本能正常執行並不停止
建立 service file /etc/systemd/system/coredns.service
[Unit]
Description=coredns
[Service]
Type=simple
ExecStart=/root/coredns/coredns -conf corefile
Restart=always
[Install]
WantedBy=multi-user.target
設定權限、reload server
chmod 644 /etc/systemd/system/coredns.service
systemctl daemon-reload