Connection refused: connect to listener on 0.0.0.0:80
时间:2019-11-20 08:52:51 来源:igfitidea点击:
问题
Apache Jail日志文件 /var/log/httpd-error.log
中报错:
Connection refused: connect to listener on 0.0.0.0:80
在0.0.0.0:80上连接到侦听器, 连接被拒绝。
解决方法
编辑配置文件
# vi /usr/local/etc/apache22/httpd.conf
找到Listen指令:
#Listen 12.34.56.78:80
设置Apache绑定的监听IP(服务器IP)
Listen 192.168.1.100:80
重启Apache使设置生效:
# /usr/local/etc/rc.d/apache22 restart