将python 脚本设置为开机自启服务(Linux)
在/usr/lib/systemd/system 编写xxx.service文件,内容如下:[Unit]Description=xxx Service# 服务名称After=multi-user.target[Service]Type=idleExecStart=/usr/local/python/bin/python3.6/data/test/xxx.py ...
·
- 在/usr/lib/systemd/system 编写xxx.service文件,内容如下:
[Unit]
Description=xxx Service # 服务名称
After=multi-user.target
[Service]
Type=idle
ExecStart=/usr/local/python/bin/python3.6 /data/test/xxx.py # python与python脚本所在的位置
[Install]
WantedBy=multi-user.target
- 编辑完成后,配置文件权限并设置开启自启
chmod 644 /usr/lib/systemd/system/xxx.service # 配置权限
systemctl daemon-reload #重载服务列表
systemctl enable xxx.service #设置开机自启动
systemctl start xxx.service #开启服务
systemctl status xxx.service #查看服务是否正常运行
更多推荐
已为社区贡献1条内容
所有评论(0)