首页 > 运维 > nginx > 正文

使用systemctl命令启动nginx竟然报错了?什么原因?

王林
发布: 2020-12-01 15:16:53
转载
4005 人浏览过

使用systemctl命令启动nginx竟然报错了?什么原因?

问题:

使用systemctl start nginx命令启动nginx发现报错了,报错内容如下:

推荐教程:nginx教程

Job for nginx.service failed because the control process exited with error code. See “systemctl status nginx.service” and “journalctl -xe” for details.[object Object]
登录后复制

问题分析:

nginx -t 检查没有问题

systemctl status nginx 查看nginx状态,显示报错为 80端口被占用

Jul 13 16:18:18 web01 nginx[2407]:nginx:[emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
登录后复制

原因分析:

安装时 启动使用了 nginx命令启动,修改配置文件之后又使用 systemctl restart nginx命令启动

nginx命令启动时已将80端口占用,再使用systemctl restart nginx 又是跑到端口80 导致冲突报错

解决方法:

查看nginx端口状态

ps -ef|grep nginx #查看nginx端口使用情况
登录后复制

将nginx进程ss

pkill nginx
登录后复制

再使用system方式启动

systemctl start nginx
登录后复制

以上是使用systemctl命令启动nginx竟然报错了?什么原因?的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:csdn.net
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板