ubuntu上安装Apache2时出现错误
Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
端口被占用造成
在root权限下键入命令:
# netstat -lnp | grep 80
从图中可以看出nginx占用了进程
键入命令
#pkill -9 nginx
杀死nginx的所有进程
再次启动Apache成功
本文共 265 字,大约阅读时间需要 1 分钟。
ubuntu上安装Apache2时出现错误
Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
端口被占用造成
在root权限下键入命令:
# netstat -lnp | grep 80
从图中可以看出nginx占用了进程
键入命令
#pkill -9 nginx
杀死nginx的所有进程
再次启动Apache成功
转载于:https://www.cnblogs.com/zhen656/p/4251007.html