关于Nginx不能正常启动的问题

job-for-nginxservice-failed-because-the-control-process-exited-with-error-code-see-systemctl-status-nginxservice-and-journalctl-xe-for-details">Job for nginx.service failed because the control process exited with error code. See “systemctl status nginx.service” and “journalctl -xe” for details

关于执行 systemctl start nginx 命令出现上述错误。
这里写图片描述
执行 systemctl status nginx
关于Nginx不能正常启动的问题_第1张图片
再执行 netstat -tnlp
关于Nginx不能正常启动的问题_第2张图片

猜测可能出现的问题是Nginx的端口被占用
因此执行

ps -ef | grep nginx
pkill -9 nginx
   
   
   
   

这里写图片描述
即可。
然后再重启Nginx服务
关于Nginx不能正常启动的问题_第3张图片
即可。说明问题已经被解决,可能出现的原因就是端口被占用了。

原文:https://blog.csdn.net/u012832088/article/details/80729002

你可能感兴趣的:(#,其他web技术栈,大学与Java那些年)