centos7 安装gitlab之后无法重启nginx,也无法停止

在 linode centos7 上安装gitlab-ce,安装之后默认的nginx被停止。 现在无法关闭gitlab自带的nginx,使用kill进程也是一样。

 

[root@linode nginx]# ps aux | grep nginx
root 4223 0.0 0.0 4188 792 ? Ss 21:53 0:00 runsv nginx
root 4224 0.0 0.0 4332 644 ? S 21:53 0:00 svlogd -tt /var/log/gitlab/nginx
root 4527 0.0 0.2 26888 4352 ? Ss 21:57 0:00 nginx: master process /opt/gitlab/embedded/sbin/nginx -p /var/opt/gitlab/nginx
gitlab-+ 4528 0.0 0.3 31140 7612 ? S 21:57 0:00 nginx: worker process
root 4918 0.0 0.1 112668 2272 pts/1 S+ 22:02 0:00 grep --color=auto nginx
[root@linode nginx]# 

 

 

gitlab-ctl 守护进程停止 nginx. 

 

gitlab-ctl stop nginx

 

 

gitlab-ctl 守护进程重新启动 nginx. 

gitlab-ctl restart nginx

 

 

你可能感兴趣的:(应用服务器)