【Apache】困った、困ったApacheの再起動に失敗したらときと、ゾンビちゃんを一網打尽にする方法
概要
みなさんはこんな経験ないですか?
# /etc/init.d/httpd restart
httpd を停止中: [失敗]
httpd を起動中: httpd: Could not reliably determine the server's fully qualified domain name, using xxx.xxx.xx.xx for ServerName
(98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[失敗]
apache再起動したいけど、できないざますー!!!
そんな時はこのコマンドを叩いてみましょう
httpdのプロセスが ざわついていませんか? ざわざわっ
$ ps auxw | grep httpd
user 24484 0.0 0.3 285604 13060 ? S Jan01 0:08 /usr/sbin/httpd
user 24485 0.0 0.3 285604 13048 ? S Jan01 0:08 /usr/sbin/httpd
user 24486 0.0 0.3 285604 13044 ? S Jan01 0:08 /usr/sbin/httpd
上記は、通常の状態ですが、起動時間がやたら長いのがいたり、ユーザーが?????とかよくわからん
プロセスがいたりして再起動に失敗している場合があります
怪しいプロセスがいた場合は下記コマンドを実行して、ゾンビちゃんを一網打尽にしましょう w
kill -9 `ps auxw | grep httpd | awk '{print $2}'`
解説
kill -9
はプロセスを強制終了します。
プロセスをキルするとか殺すとかいいますね。
ps auxw | grep httpd | awk '{print $2}'
こちらは httpdのプロセスの2要素目のリストを出力しています。
参考までにこのコマンドだけ実行すると↓のようになります
$ ps auxw | grep httpd | awk '{print $2}'
1633
9901
24484
24485
24486
結論
要はhttpdのプロセスを全部killしているだけです。
実行する際は、webを参照しているユーザもいるかもしれないので、
えいやー!!! ではなく、関係各所やタイミングを図りましょうw
それではよい Linux Apache ライフを!!
Author And Source
この問題について(【Apache】困った、困ったApacheの再起動に失敗したらときと、ゾンビちゃんを一網打尽にする方法), 我々は、より多くの情報をここで見つけました https://qiita.com/mimimi-no-sesese/items/6a46df14b7b8941e77a6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .