httpd won't start after updating versions, no error

redjersey

Verified User
Joined
Apr 22, 2013
Messages
100
Location
Toronto, Canada
This afternoon I have tried to update versions by running:
[root@server custombuild]# ./build versions
[root@server custombuild]# ./build update_versions

after that httpd won't start:

Code:
service httpd restart
Stopping httpd:                                            [FAILED]
Starting httpd: [Wed Nov 26 18:24:06.325558 2014] [core:warn] [pid 8973] AH00117: Ignoring deprecated use of DefaultType in line 62 of /etc/httpd/conf/httpd.conf.
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain1] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain1] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain2] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain2] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain3] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/domain3] does not exist

just a bunch of warnings, but no error

I have also run ./build update
then ./build php d

but still can't start/restart httpd

any help is appreciated.
 
Try running:

Code:
./build rewrite_confs

I also did, still not working.

I'm curious why the warning appeared twice:

Code:
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[B]domain1[/B]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[B]domain1[/B]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[I]domain2[/I]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[I]domain2[/I]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[U]domain3[/U]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[U]domain3[/U]] does not exist
 
Last edited:
I like to say ThankYOU!

Try running:

Code:
./build rewrite_confs

Domains could not be reached, and got the message the connection is re-initiated

After this simple step, all domains are reachable.


Trying to find out why this happened, but this is not very import anymore!
 
you have some problem with one of your domains.
like you change the docroot.
just create the folder:
Code:
mkdir -p /home/admin/domains/suspended/domain1
 
I also did, still not working.

I'm curious why the warning appeared twice:

Code:
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[B]domain1[/B]] does not exist
AH00112: Warning: DocumentRoot [/home/admin/domains/suspended/[B]domain1[/B]] does not exist


You should ignore it, it does not affect your server. Those lines are warnings only. And do not create those Document Roots. Suspended domains do not require it.

To learn on why apache fails to start you should read error logs: /var/log/httpd/error_logs or hire somebody to fix it for you.
 
Back
Top