I get an error message httpd dead subsys locked

I am new to Linux administration. I want to host multiple sites, but I always get the httpd dead subsys error message.

+4
source share
3 answers

http://awaseroot.wordpress.com/2012/06/11/subsys-lock-problem-with-centos-6-2-and-apache/ Kill the httpd process, check the pid file in httpd.conf, and then restart httpd This link gives you detailed information.

+5
source

A fairly common problem with the Apache server. Since you did not mention that your exact Linux generator would be sufficient.

, " httpd service", .

http (root)

sudo service httpd status

" httpd dead, subsys locked"

sudo rm -f /var/lock/subsys/httpd

killall -9 httpd

sudo rm -f /var/lock/subsys/httpd

sudo service httpd restart
+4

Check disk space with df -h. If you have a full disk, this may lead to this error.

+2
source

All Articles