查詢有關正在執行的程序的資訊
ps aux | grep <search-term>
顯示匹配搜尋項的程序 **
例:
root@server7:~# ps aux | grep nginx
root 315 0.0 0.3 144392 1020 ? Ss May28 0:00 nginx: master process /usr/sbin/nginx
www-data 5647 0.0 1.1 145124 3048 ? S Jul18 2:53 nginx: worker process
www-data 5648 0.0 0.1 144392 376 ? S Jul18 0:00 nginx: cache manager process
root 13134 0.0 0.3 4960 920 pts/0 S+ 14:33 0:00 grep --color=auto nginx
root@server7:~#
這裡,第二列是程序 ID。例如,如果要終止 nginx 程序,可以使用命令 kill 5647
。總是建議使用 kill
命令而不是 SIGKILL
。