Nginx启动出现Job for nginx.service failed because the control process exited with error code.
创始人
2024-11-13 22:11:24
0

Nginx启动出现Restarting nginx (via systemctl): Job for nginx.service failed because the control process exited with error code. See “systemctl status nginx.service” and “journalctl -xe” for details.问题

1、查看防火墙启动的端口号

[root@iZuf68mr29sh8zy1elsaixZ ~]# firewall-cmd --list-ports 80/tcp 3306/tcp 

2、重启防火墙

[root@iZuf68mr29sh8zy1elsaixZ ~]# firewall-cmd --reload success 

3、重启nginx,出现如下错误

[root@iZuf68mr29sh8zy1elsaixZ ~]# service nginx restart Restarting nginx (via systemctl):  Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details. 

这种错误一般都是目录不存在或者权限不足,所以直接执行下面两条命令即可,结果发现根本行不通。

[root@iZuf68mr29sh8zy1elsaixZ ~]# cd /var/tmp/ [root@iZuf68mr29sh8zy1elsaixZ ~]# mkdir -p /var/tmp/Nginx/{client,proxy,fastcgi,uwsgi,scgi} 

4、查看nginx服务

[root@iZuf68mr29sh8zy1elsaixZ ~]# systemctl status nginx.service ● nginx.service - The nginx HTTP and reverse proxy server    Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)    Active: failed (Result: exit-code) since Sun 2023-02-05 11:02:23 CST; 36s ago   Process: 1416 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=1/FAILURE)   Process: 1414 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)  Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ systemd[1]: Starting The nginx HTTP an... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ nginx[1416]: nginx: the configuration ... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ nginx[1416]: nginx: [emerg] bind() to ... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ nginx[1416]: nginx: configuration file... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ systemd[1]: nginx.service: control pro... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ systemd[1]: Failed to start The nginx ... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ systemd[1]: Unit nginx.service entered... Feb 05 11:02:23 iZuf68mr29sh8zy1elsaixZ systemd[1]: nginx.service failed. Hint: Some lines were ellipsized, use -l to show in full. 

可以看到nginx出现错误:

Process: 1416 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=1/FAILURE)   Process: 1414 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited,  

可以看出修改完配置信息后没有提交:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# nginx -t -c /etc/nginx/nginx.conf nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: [emerg] bind() to 139.196.234.86:80 failed (99: Cannot assign requested a ddress) 

结果发现80端口被占用:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# netstat -natp |grep 80 tcp        0      0 172.16.85.16:43064      100.100.30.26:80        ESTABLISHED 1189/AliYunDun 

将80端口杀死:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# kill 1189 [root@iZuf68mr29sh8zy1elsaixZ tmp]# netstat -natp |grep 80 tcp        0      0 172.16.85.16:43064      100.100.30.26:80        TIME_WAIT   - 

5.测试nginx服务

执行测试:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful 

测试成功

重新加载配置文件:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# nginx -s reload nginx: [error] invalid PID number "" in "/run/nginx.pid" 

出现错误

重启:

[root@iZuf68mr29sh8zy1elsaixZ tmp]# nginx -c /etc/nginx/nginx.conf nginx: [emerg] bind() to 139.196.234.86:80 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:8000 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:80 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:8000 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:80 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:8000 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:80 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:8000 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:80 failed (98: Address already in use) nginx: [emerg] bind() to 139.196.234.86:8000 failed (98: Address already in use) nginx: [emerg] still could not bind() 

发现报了如此对的错误信息

此时将nginx的所有进程都杀死:

killall nginx 

重新启动nginx,就可以正常运行了

[root@iZuf68mr29sh8zy1elsaixZ tmp]# service nginx start Starting nginx (via systemctl):                            [  OK  ] [root@iZuf68mr29sh8zy1elsaixZ tmp]# systemctl status nginx.service ● nginx.service - The nginx HTTP and reverse proxy server    Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)    Active: active (running) since Sun 2023-02-05 11:20:16 CST; 40s ago   Process: 1763 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)   Process: 1760 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)   Process: 1756 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)  Main PID: 1764 (nginx)    CGroup: /system.slice/nginx.service            ├─1764 nginx: master process /usr/sbin/nginx            ├─1765 nginx: worker process            └─1766 nginx: worker process  Feb 05 11:20:16 iZuf68mr29sh8zy1elsaixZ systemd[1]: Starting The nginx HTTP and reverse proxy server... Feb 05 11:20:16 iZuf68mr29sh8zy1elsaixZ nginx[1760]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok Feb 05 11:20:16 iZuf68mr29sh8zy1elsaixZ nginx[1760]: nginx: configuration file /etc/nginx/nginx.conf test is s...sful Feb 05 11:20:16 iZuf68mr29sh8zy1elsaixZ systemd[1]: Started The nginx HTTP and reverse proxy server. Hint: Some lines were ellipsized, use -l to show in full. 

相关内容

热门资讯

玩家必看科普!hhpoker辅... 玩家必看科普!hhpoker辅助挂是真的吗,wepoker有没有辅助(切实真的是有挂)hhpoker...
必备科技!约局吧德州透视,we... 必备科技!约局吧德州透视,wepokerplus辅助(其实是有挂)约局吧德州透视透视方法中分为三种模...
玩家攻略推荐!创思维激k看底牌... 玩家攻略推荐!创思维激k看底牌辅助(开挂辅助方法)都是有透视妙招1、这是跨平台的创思维激k看底牌辅助...
一分钟了解!约局吧辅助器,hh... 一分钟了解!约局吧辅助器,hh poker透视器下载(一直是有挂)进入游戏-大厅左侧-新手福利-激活...
最新技巧!决胜麻架胡易辅助(开... 最新技巧!决胜麻架胡易辅助(开挂辅助方法)其实有透视妙招暗藏猫腻,小编详细说明决胜麻架胡易辅助破解器...
重大通报!wepoker插件程... 重大通报!wepoker插件程序激活码,hhpoker真的有透视吗(本来存在有挂)1、每一步都需要思...
大神推荐!上品辅助器(总结辅助... 大神推荐!上品辅助器(总结辅助方法)原来有透视要领该软件可以轻松地帮助玩家将上品辅助器外卦神器提升到...
一起来探讨!wpk插件辅助,佛... 一起来探讨!wpk插件辅助,佛手大菠萝辅助(都是是有挂)1、实时佛手大菠萝辅助透视辅助更新:用户可以...
终于知道!德扑之星私人局辅助(... 终于知道!德扑之星私人局辅助(有挂辅助软件)一直有透视方式1、德扑之星私人局辅助破解器简单,德扑之星...
科技新动态!wepoker私人... 科技新动态!wepoker私人局怎么玩,wepoker免费钻石(其实有挂)运wepoker私人局怎么...