一、报错如下

[root@localhost ~]# systemctl start nginx.service

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code_加载

二、解决原因

1、先检查nginx配置文件正否正确

输入nginx -t 命令,如果反回 successful表示配置文件无错误,否则说明配置文件有错误。

nginx -t -c /etc/nginx/nginx.conf

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code_nginx_02

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code_nginx_03

如果配置文件有错误,修改配置文件后,先执行 nginx -t 命令检查配置文件无错误后,再执行nginx -s reload 重新加载配置文件命令。