「Linux入門」プロセスを表示、強制終了するメモ
1.プロセスを表示
ps aux
ps aux | grep nginx
2.プロセスを終了
kill pid
ps -ef | grep processname| grep -v grep | awk '{print $2}’ | xargs kill -9
Coding Changes the World
1.プロセスを表示
ps aux
ps aux | grep nginx
2.プロセスを終了
kill pid
ps -ef | grep processname| grep -v grep | awk '{print $2}’ | xargs kill -9