Warning: DocumentRoot does not exist

Linode Staff

I'm not sure how long everything has been broken, but out of no where my websites will not load. I have a ton of websites hosted on this box and I have not made any changes, now when I go to one the page won't load. When I check my console, I see the following:

Warning: DocumentRoot [/srv/xxxxxxx.com/public_html/] does not exist

What is happening?

1 Reply

Hello,

It looks like Apache may be having some trouble starting. That error specifically would point towards your Apache configuration, and the DocumentRoot directive trying to find a specified folder that it does not recognize as existing. You may want to check your virtual host configuration file to see where this error may be occurring. This file is usually found along the following path:

/etc/httpd/conf.d/vhost.conf

From there you'll want to make sure that the referenced folder /srv/xxxxxxx.com/public_html/ is referenced correctly, and exists with the proper permissions. Other useful commands for troubleshooting this may be as follows:

 sudo service apache2 start 
 sudo service apache2 status
 tail /var/log/apache2/error.log

The first will start the status of the apache2 service, the second will check the status of it, and the last will allow you to audit recent apache error logs, hopefully give you more insight into this issue.

I hope that helps!

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct