systemctl配置守护进程

切root用户
cd /etc/systemd/system
建一个xxxx.service 内容如下
[Unit]
Description=Heartbeat Script
After=network.target

[Service]
ExecStart=/home/www/status-client_linux_amd64/xxx.sh
Restart=always
RestartSec=30
User=www
Group=www

[Install]
WantedBy=multi-user.target

systemctl daemon-reload
systemctl enable heartbeat.service #开机自启
/*
Restart=always
RestartSec=30
重启间隔30秒
xxx.sh 文件里不要加& 不然systemctl start xx.sh的时候会启动不了
*/

 

 


发表评论

电子邮件地址不会被公开。 必填项已用*标注