查看进程

ps -ef |grep python

关闭进程

kill -9 xxx

linux下后台执行某个python脚本

nohup python -u  xxx.py > out.log 2>&1 &

原文:https://www.shuzhiduo.com/A/lk5ajrxZd1/