Job for nginx.service failed because the control process exited with error code. See “systemctl stat
精彩刚刚开始$ 2024-07-27 14:37:01 阅读 77
【这个报错表示nginx的默认进程被占用】
第一步:systemctl status nginx查看nginx报错信息
第二步:查看nginx配置文件,我这的nginx默认端口使用了3306
第三步:使用netstat -tlnp查看目前的端口使用情况,发现mysql已经占用了3306端口,和我们nginx的默认端口冲突
第四步:接着使用ps -ef | grep mysql 查看mysql的进程信息,使用kill -9强制杀死进程
第五步:杀死后重启nginx进程,即可顺利开启,重启命令,systemctl restart nginx
上一篇: Docker 搭建 Minio 容器 (完整详细版)
下一篇: 使用docker部署onlyoffice插件步骤及踩坑问题(win10/linux)
本文标签
Job for nginx.service failed because the control process exited with error code. See “systemctl stat
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。