阿里云 ecs linux Ubuntu Nginx安装失败
2020-03-06 本文已影响0人
monkey姜啦
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

执行远程终端命令 查看端口使用情况
netstat -tnlp
图片中显示是80端口被java占用,我的80端口是被apache2给占用了

解决:
使用命令:kill -9 PID关掉占用线程(我这里是kill -9 24531)即可,我的apache线程被杀了三次才OK
参考博客:https://blog.csdn.net/fucaijin/article/details/88092796