您好,登錄后才能下訂單哦!
一、
pgrep 是通過程序的名字來查詢進程的工具,一般是用來判斷程序是否正在運行。在服務器的配置和管理中,這個工具常被應用,簡單明了。
#pgrep [選項] [程序名]
pgrep [-flvx] [-n | -o] [-d delim] [-P ppidlist] [-g pgrplist] [-s sidlist] [-u euidlist] [-U uidlist] [-G gidlist] [-J projidlist] [-t termlist] [-T taskidlist] [-c ctidlist] [-z zoneidlist] [pattern]
常用參數
-l 列出程序名和進程ID;
-o 進程起始的ID;
-n 進程終止的ID;
另外,還可以使用另外一個ps命令:(點擊查看ps命令詳解)
ps x | grep xxx | awk '{print $1}'
實例:
ps x | grep java | awk '{print $1}'
1、xxx為執行的命令名稱
2、舉個例子,獲取當前用戶下的java進程 【pid】
[admin@vm168a ~]$ ps x | grep java | awk ?'{print $1}'
16920
3、用到三個命令,ps、grep、awk。
要是這樣獲取不到的話,可以使用ps命令:
ps -ef | grep xxx | grep -v 'grep' | awk '{print $2}'
[yanue@server ~]$ ps -ef | grep nginx | grep -v 'grep' | awk '{print $2}'
二、
在已知進程名(name
)的前提下,交互式 Shell 獲取進程 pid 有很多種方法,典型的通過 grep 獲取 pid 的方法為(這里添加-v grep
是為了避免匹配到 grep 進程):
ps -ef | grep "name" | grep -v grep | awk '{print $2}'
或者不使用 grep
(這里名稱首字母加[]
的目的是為了避免匹配到 awk 自身的進程):
ps -ef | awk '/[n]ame/{print $2}'
如果只使用 x 參數的話則 pid 應該位于第一位:
ps x | awk '/[n]ame/{print $1}'
最簡單的方法是使用 pgrep
:
pgrep -f name
如果需要查找到 pid 之后 kill 掉該進程,還可以使用 pkill
:
pkill -f name
如果是可執行程序的話,可以直接使用 pidof
pidof name
在使用 Shell 腳本獲取進程 pid 時,如果直接使用上述命令,會出現多個 pid 結果,例如:
1 2 3 4 5 | ps x | grep | grep -v grep | awk |
執行 process-monitor.sh
會出現多個結果:
$> sh process-monitor.sh4036 3098 3099
進一步排查可以發現,多出來的幾個進程實際上是子 Shell 的(臨時)進程:
root 3036 2905 0 09:03 pts/1 00:00:45 /usr/java/jdk1.7.0_71/bin/java ...nameroot 4522 2905 0 16:12 pts/1 00:00:00 sh process-monitor.sh nameroot 4523 4522 0 16:12 pts/1 00:00:00 sh process-monitor.sh name
其中 3036 是需要查找的進程pid,而 4522、4523 就是子 Shell 的 pid。 為了避免這種情況,需要進一步明確查找條件,考慮到所要查找的是 Java 程序,就可以通過 Java 的關鍵字進行匹配:
1 2 3 4 5 | ps -ef | grep | grep | grep -v grep | awk |
這里涉及兩個指令: 1. $$
:當前 Shell 進程的 pid 2. $!
:上一個后臺進程的 pid 可以使用這兩個指令來獲取相應的進程 pid。例如,如果需要獲取某個正在執行的進程的 pid(并寫入指定的文件):
myCommand && pid=$!myCommand & echo $! >/path/to/pid.file
注意,在腳本中執行
$!
只會顯示子 Shell 的后臺進程 pid,如果子 Shell 先前沒有啟動后臺進程,則沒有輸出。
在獲取到 pid 之后,還可以根據 pid 查看對應的進程是否存在(運行),這個方法也可以用于 kill 指定的進程。
if ps -p $PID > /dev/nullthen echo "$PID is running" # Do something knowing the pid exists, i.e. the process with $PID is running fi
三、判斷進程的狀態
#PID=`ps -ef | grep java | grep flume | awk '{ print $2 }'`
#ps -ef |grep hello |awk '{print $2}'|xargs kill -9
#!/bin/bash
Condir=/app/cfg/content-hist-b
Startfile=/app/etc/init.d/content-hist-b
Pid=content-hist-b
echo "D&Gby1900d129" |sudo -S /usr/sbin/sysctl -w vm.drop_caches=3;
count=`pgrep -f $Pid` && echo $count;
if [ -n "$count" ]; then
sleep 1;
echo "Prcoess is busy";
kill -9 $count;
sleep 60;
cd $Condir && sh clean.sh && $Startfile restart;
else
echo "Prcoess is stop";
cd $Condir && sh clean.sh && $Startfile restart;
fi
exit;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。