Logo Linux Bash SSH Ubuntu Git Menu
 

Apache Boot Log

Tags:

ubuntu

If apache fails to load on ubuntu-server, where can I find the logs to find out why?

like image 953
Ben Avatar asked Apr 08 '26 01:04

Ben


1 Answers

Check these two files:

/var/log/apache2/error.log
/var/log/messages

Another thing you could do is run $ apache2ctl configtest. That will run a syntax check over your config files and should let you know if anything looks awry.

like image 79
EEAA Avatar answered Apr 10 '26 14:04

EEAA