apache无故挂起,提示caught SIGTERM, shutting down的解决方法
时间:2014-08-12 22:59 来源:linux.it.net.cn 作者:it
httpd启动不久挂掉,error_log提示: [notice] caught SIGTERM, shutting down,原因在于httpd.conf里Listen字段的设置问题。
启动httpd不久之后,自己挂掉了,查看error_log,提示:
[notice] caught SIGTERM, shutting down
经检查发现,是因为httpd.conf里Listen字段的设置问题。
原先的设置的格式:
Liseten IP:80
需要将其改为:
Liseten 80
一切恢复正常。
(责任编辑:IT)
httpd启动不久挂掉,error_log提示: [notice] caught SIGTERM, shutting down,原因在于httpd.conf里Listen字段的设置问题。
启动httpd不久之后,自己挂掉了,查看error_log,提示:
[notice] caught SIGTERM, shutting down
经检查发现,是因为httpd.conf里Listen字段的设置问题。 原先的设置的格式:
Liseten IP:80
需要将其改为:
Liseten 80
一切恢复正常。 (责任编辑:IT) |