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
Comments | NOTHING