在linux上⽤系统命令systemctl执⾏python脚本⾸先编写好⾃⼰的python脚本
然后执⾏命令vi xxxx.service
输⼊以下内容
[Unit]
Description = xxxx #描述#
After = network.target
[Service]
ExecStart = /usr/bin/python -u python脚本名
WorkingDirectory = /home #脚本所在⽬录#
StandardOutput = inherit
StandardError = inherit
Restart = always
User = pi #系统登录⽤户名#
[Install]
WantedBy=multi-user.target
linux循环执行命令脚本然后把 xxx.service 复制到 /etc/systemd/system/
sudo cp xxx.service /etc/systemd/system/xxx.service
最后
启动该服务 sudo systemctl start xxx.service
停⽌该服务sudo systemctl stop xxx.service
查看运⾏状态sudo systemctl status xxx.service
设置开机运⾏ sudo systemctl enable xxx.service
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论