Thursday, January 30, 2014

Apache server shows Connection time out in browser after installation in CentOS

After installing httpd in CentOS, webpage will not load by default

This is because of the iptables

run below command to solve the issue

# /sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

# service iptables restart
 
That should do the trick!!!

No comments: