查看centos 中的python进程
如何在linux中查看相关的python进程。
查询相关进程
ps -ef|grep python
关闭(杀死)相关进程
kill -9 20708
上传xue.py后重新后台启动python文件
nohup python3 -u main.py > test.log 2>&1 &
如何在linux中查看相关的python进程。
ps -ef|grep python
kill -9 20708
nohup python3 -u main.py > test.log 2>&1 &