今天在centos服务器上安装了httpd
yum install httpd
开启服务
service httpd start
service httpd status
发现httpd是正常开启的,但是外部主机访问超时,本地可以访问
后来知道是因为CentOS默认情况下iptables中限制远程访问80端口
因此
iptables -I INPUT -p TCP –dport 80 -j ACCEP
允许外部ip访问80端口,就可以了。
今天在centos服务器上安装了httpd
yum install httpd
开启服务
service httpd start
service httpd status
发现httpd是正常开启的,但是外部主机访问超时,本地可以访问
后来知道是因为CentOS默认情况下iptables中限制远程访问80端口
因此
iptables -I INPUT -p TCP –dport 80 -j ACCEP
允许外部ip访问80端口,就可以了。