1、在后台运行任务

nohup python -u service.py > out.log 2>&1 &   ###service.py为要运行的程序

2、查看后台任务,获取任务PID

ps -aux

3、关闭后台运行任务

kill -9 PID

 

Logo

更多推荐