歡迎光臨
每天分享高質量文章

Linux 查殺 stopped 行程

來源:瀟湘隱者

www.cnblogs.com/kerrycode/p/9254488.html

在Linux系統下麵,top命令可以檢視檢視stopped行程。但是不能檢視stopped行程的詳細資訊。那麼如何檢視stopped 行程,並且殺掉這些stopped行程呢?

ps -e j | grep T

stopped行程的STAT狀態為T,一般而言,行程有下麵這些狀態碼:

D    uninterruptible sleep (usually IO)

  

I    Idle kernel thread

  

R    running or runnable (on run queue)

  

S    interruptible sleep (waiting for an event to complete)

  

T    stopped by job control signal

  

t    stopped by debugger during the tracing

  

W    paging (not valid since the 2.6.xx kernel)

  

X    dead (should never be seen)

  

Z    defunct (“zombie”) process, terminated but not reaped by

  

     its parent

  

  

  

for BSD formats and when the stat keyword is used, additional

rs may be displayed:

  

  

  

  

N    low-priority (nice to other users)

  

L    has pages locked into memory (for real-time and custom

  

     IO)

  

s    is a session leader

  

l    is multi-threaded (using CLONE_THREAD, like NPTL

  

     pthreads do)

  

+    is in the foreground process group

一般較常見的是5種狀態碼:

  • D 不可中斷 uninterruptible sleep (usually IO)

  • R 執行 runnable (on run queue)

  • S 中斷 sleeping

  • T 停止 traced or stopped

  • Z 僵死 a defunct (”zombie”) process

所以,可以用下麵命令ps -A -ostat,ppid,pid,cmd | grep -e ‘^[T]‘ 檢視stopped的行程資訊。如下所示:

#  ps -A -ostat,ppid,pid,cmd | grep -e ‘^[T]’

  

T     6777  8635 more alert_pps.log

T     6777  9654 tail -60f alert_pps.log

T     6777 10724 top

# kill -9 8635

#  ps -A -ostat,ppid,pid,cmd | grep -e ‘^[T]’

T     6777  9654 tail -60f alert_pps.log

T     6777 10724 top

# kill -9 9654

# kill -9 10724


●編號559,輸入編號直達本文

●輸入m獲取文章目錄

推薦↓↓↓

 

運維

更多推薦18個技術類微信公眾號

涵蓋:程式人生、演演算法與資料結構、駭客技術與網路安全、大資料技術、前端開發、Java、Python、Web開發、安卓開發、iOS開發、C/C++、.NET、Linux、資料庫、運維等

贊(0)

分享創造快樂