1.查看正在跑的进程有哪些
ps a // 查看所有进程
ps ef | grep "python" // 查看python开启的runserver进程
2.杀死对应进程
查找结果
(imooc_env) [root@VM_0_14_centos order]# ps -ef|grep "python"
root 515 1 0 13:58 ? 00:00:00 /usr/bin/python -Es /usr/sbin/tuned -l -P
root 22666 1 0 14:56 pts/0 00:00:09 /root/imooc_env/bin/python /data/www/flask_wechat/order/manager.py runserver
root 25207 24411 0 15:19 pts/1 00:00:00 grep --color=auto python
杀死对应id
kill -9 22666
网友评论