linux用systemctl守护python


systemctl真是个好东西什么都可以守护 还能查看日志 我是守护python脚本

vi /etc/systemd/system/gost.service //gost.service 就是你想的名字
[Unit]
Description=python3sc
After=network.target
Wants=network.target

[Service]
Type=simple
ExecStart=/usr/bin/python3 /root/aa.py
Restart=always

[Install]
WantedBy=multi-user.target

/root/aa.py 就是你的脚本的绝对路径 这个里面都要绝对路径
记得重新载入systemd的配置

systemctl daemon-reload

声明:小小博客|版权所有,违者必究|如未注明,均为原创|本网站采用BY-NC-SA协议进行授权

转载:转载请注明原文链接 - linux用systemctl守护python


Carpe Diem and Do what I like