本文摘自:https://blog.csdn.net/huhuhuemail/article/details/80519433
sudo gitlab-ctl stop
sudo rpm -e gitlab-ce
ps -ef|grep gitlab
杀掉第一个守护进程(runsvdir -P /opt/gitlab/service log
)
kill -9 4473
再次查看gitlab进程是否存在
find / -name *gitlab*|xargs rm -rf
删除所有包含gitlab的文件及目录
find / -name gitlab |xargs rm -rf
删除gitlab-ctl uninstall
时自动在root
下备份的配置文件(ls /root/gitlab*
看看有没有,有也删除)
通过以上几步就可以彻底卸载gitlab
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:完全卸载GitLab