gitlab 安装报错无法重启nginx

本文记录了作者遇到Nginx启动失败的问题及其解决过程。首先处理了找不到pid文件的问题,之后解决了端口被占用的情况,并最终定位到是GitLab守护进程导致的问题。通过停止GitLab服务并重启Nginx,成功解决了所有错误。
摘要由CSDN通过智能技术生成

重启时报错


/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)


发现没有pid没文件


/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf


执行此命令修复


又报错

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()


端口被强占

losf -i:80


查看被占端口


nginx 3274 root 6u IPv4 10664 0t0 TCP *:http (LISTEN)
nginx 3547 nginx 6u IPv4 10664 0t0 TCP *:http (LISTEN)


kill -9 进程号


成功杀死


重启!!!

不过。。。。还报错!!!他妈还报错


最后发现80端口进程杀死后,任然会重新生成,这分明是有守护进程


lsof -i:80 再次查看占用情况

[root@iz2zeb2wsie8fvxcmgisz8z /]# lsof -i:80
COMMAND PID       USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
nginx   533       root    7u  IPv4  12759      0t0  TCP *:http (LISTEN)
nginx   594 gitlab-www    7u  IPv4  12759      0t0  TCP *:http (LISTEN)


594进程是gitlab的,说明这是gitlab整的


接着

停掉gitlab  

sudo gitlab-ctl stop

接着

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

然后

/usr/local/nginx/sbin/nginx -s reload

OK!!!!

Y(^o^)Y好了,搞了一上午









评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值