Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Apache Server to display test page

Tags:

apache

centos

I am trying to set up an Apache Server on a CentOS 5.9 machine but I am not seeing the Apache test page when I get visit my machines IP Address on port 80 in my browser. Apache/httpd comes prepackaged with CentOS and I have already ensured the httpd service is running and NameVirtualHost *:80 has been uncommented in /etc/httpd/conf/httpd.conf, Everything else is httpd.conf is set to the defaults. There are no errors in the httpd log and the service restarts fine. What am I doing wrong? Thanks.

like image 742
yellavon Avatar asked Mar 24 '23 11:03

yellavon


1 Answers

To check if apache is serving the default page point your browser to http://localhost. If you haven't a GUI you can access your server with curl localhost which will print on your stdout the HTML code of your default page.

If you're trying to access to your server from a remote machine you should check if there's a running firewall and if the port 80 is opened iptables -vnL. If not, open it with iptables -A INPUT -p TCP -m state --state NEW -j ACCEPT

like image 167
Giorgio Previtera Avatar answered Mar 31 '23 11:03

Giorgio Previtera