Jps 資訊顯示不全或不可用,無法殺死程序
阿新 • • 發佈:2018-12-09
1、正常情況 找到使用該程序的使用者,進入該使用者進行檢視
ps -ef | grep pid
su - 使用者名稱
jps
- 1
- 2
- 3
2、異常情況 假如程序被停止:
jps
kill -9 pid
- 1
- 2
發現程序還有殘留:
ps -ef|grep pid
- 1
pid資訊殘留,去/tmp/hsperfdata_[使用者名稱]資料夾刪除該pid檔案
- 1
[[email protected] hsperfdata_root]# ll
total 128
-rw-------. 1 root root 32768 Apr 23 14:59 2867
-rw-------. 1 root root 32768 Apr 23 14:59 3009
-rw-------. 1 root root 32768 Apr 23 14:59 3150
-rw-------. 1 root root 32768 Apr 23 14:59 3243
[ [email protected] hsperfdata_root]#
##刪除pid檔案
[[email protected] hsperfdata_root]# rm -rf pid名稱