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成功
2021-12-29 12:39:49
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成功