停止用户的所有进程:supervisord 的子进程仍在运行

停止用户的所有进程:supervisord 的子进程仍在运行

我试图删除一个用户,但它一直说该用户当前被进程 ID x 使用

我尝试了一切这里这里,没有任何效果,如何杀死某个用户的所有进程以删除该帐户?

运行后su user -c 'kill -s KILL -- -1',我仍然看到一些进程:

[root@cdp ~]# ps -fljHu webdev
F S UID        PID  PPID  PGID   SID  C PRI  NI ADDR SZ WCHAN  STIME TTY          TIME CMD
4 S webdev   30031 26903 30031 26903  0  80   0 - 54756 poll_s 18:35 ?        00:00:00 /opt/site/venv/bin/python /opt/site/venv/bin/gunicorn website.wsgi:appl
1 S webdev   30045 30031 30031 26903  0  80   0 - 69156 poll_s 18:35 ?        00:00:00   /opt/site/venv/bin/python /opt/site/venv/bin/gunicorn website.wsgi:ap
1 S webdev   30046 30031 30031 26903  0  80   0 - 69158 poll_s 18:35 ?        00:00:00   /opt/site/venv/bin/python /opt/site/venv/bin/gunicorn website.wsgi:ap
1 S webdev   30047 30031 30031 26903  0  80   0 - 69160 poll_s 18:35 ?        00:00:00   /opt/site/venv/bin/python /opt/site/venv/bin/gunicorn website.wsgi:ap

进程26903是supervisord

相关内容