Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80

ubuntu上安装Apache2时出现错误

Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80  

Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80_第1张图片

端口被占用造成

在root权限下键入命令:

# netstat -lnp | grep 80

Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80_第2张图片

从图中可以看出nginx占用了进程

键入命令

#pkill -9 nginx

杀死nginx的所有进程

再次启动Apache成功

Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80_第3张图片

你可能感兴趣的:(ready)