本文主要是介绍启动Nginx服务失败:Job for nginx.service failed because the control process exited with error code.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
启动Nginx服务失败:Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
首次接触nginx,安装完使用命令 service nignx restart 后,出现这个错误,并按照提示给出的命令查看错误详情 systemctl status nginx.service :
从详情可以看到: (98:address already in use),说明端口已经被占用了,我们来看下是什么东西占用了端口吧:
输入命令: netstat -apn|grep :80
可以看到13929/httpd服务占用了80端口,需要将这个服务关闭,(我尝试使用kill杀死进程,但是无效)
可以先尝试使用pkill httpd
执行命令: service httpd stop 来关闭httpd服务
然后再重启niginx就能启动了:
这篇关于启动Nginx服务失败:Job for nginx.service failed because the control process exited with error code.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!