I have some problemes with apache on CENTOS...

When I reboot the system, httpd won't start

I have to execut my-self "service httpd start"

chkconfig  httpd --list
httpd           0:off   1:off   2:on    3:on    4:on    5:on    6:off

Any ideas ?

Thank you!

link|improve this question
feedback

migrated from stackoverflow.com Jan 11 at 9:56

This question came from our site for professional and enthusiast programmers.

1 Answer

Open a terminal window an enter the following:

/etc/init.d/httpd start

This will start apache

then

tail /var/log/httpd/error_log

This will give you the last 10 entries in the apache log. There, you should find the error. Get it and paste it here.

link|improve this answer
I got [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) [notice] Digest: generating secret for digest authentication ... [notice] Digest: done [notice] Apache/2.2.3 (CentOS) configured -- resuming normal operations – Michael Vendi Jan 11 at 5:50
feedback

Your Answer

 
or
required, but never shown