Ubuntu 下 GitLab 完全卸载
- 查看 gitlab 是否运行:
gitlab-ctl stop
ps -ef | grep gitlab
kill -9 xxx
- 删除 gitlab 相关文件:
cd /
find / -name *gitlab* | xargs rm -rf
- 卸载完毕
gitlab-ctl stop
ps -ef | grep gitlab
kill -9 xxx
cd /
find / -name *gitlab* | xargs rm -rf
相关推荐