apacheのserverlimit を変更したら graceful restartではなく、stop ⇒ startで!
Apacheの設定ファイル httpd.conf でServerLimit を変更する場合、restart では反映されない。
ServerLimitを変更した場合は、
# ./apachectl stop
# ./apachectl start
とする必要がある。
#restart = stop → startではないと公式ページに書いてあった。。
Apacheの設定ファイル httpd.conf でServerLimit を変更する場合、restart では反映されない。
ServerLimitを変更した場合は、
# ./apachectl stop
# ./apachectl start
とする必要がある。
#restart = stop → startではないと公式ページに書いてあった。。
Comment