linux 后台运行python

//查看当前进程
ps aux | grep python

//结束进程
kill -9 PID

运行python
nohup python web.py > log.txt &
格式为nohup(命令) > (输出内容保存文件) &(&代表后台运行)