已使用Apache地址:make_sock:无法绑定到端口80或443错误和解决方案

时间:2020-01-09 10:37:11  来源:igfitidea点击:

问:重新启动Apache时,如何解决错误?
"地址已在使用中:make_sock:无法绑定到端口80"?

答:如果您正在运行SELinux,请为端口80暂时禁用。

Apache地址已在使用中:make_sock:无法绑定到端口80错误和解决方案

首先使用netstat命令确保端口80/443没有被任何其他服务或应用程序使用:

# netstat -tulpn| grep :80

如果端口80绑定到httpd,请终止所有进程:

# killall -9 httpd

现在启动httpd:

# /etc/init.d/httpd start

另外,在启动httpd时,请确保您是root用户。