查看进程
ps -ef |grep python
关闭进程
kill -9 26879
其中26879为进程号。
linux下后台执行某个python脚本
nohup python -u xxx.py > out.log 2>&1 &
其中xxx.py为你要执行的python的脚本文件