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
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:
Post a Comment