ubuntu添加开机启动程序

cd  /etc/systemd/system

vim startspiderimg.server:


[Unit]
Description=It is startspiderimg

[Service]
Type=simple
ExecStart=/home/ubuntu/virtualenvs/myfirst/bin/python /home/ubuntu/mymount/project/myproject/wanwenyc/WWSpider/mybase/spiderXiuRenMeiMvWang.py
#启动失败之后重启
Restart=on-failure
#重启间隔为5s
RestartSec=5s

[Install]
WantedBy=multi-user.target

然后 

systemctl enable startspiderimg  :注册服务

systemctl start startspiderimg  :注册服务

 

service startspiderimg status  :查看startspiderimg服务启动状态

 

上一篇:联想小新Pro系列Windows10系统重装Ubuntu20.04系统


下一篇:Flink实战(七十九):flink-sql使用(七)流式SQL应用(实时使用)