How to remove gitlab from a local ubuntu 14.04 server

Could you help me remove gitlab. I deleted / home / gitlab, but it still opens when I look at my hostname. Thanks.

+5
source share
4 answers

Stop the gitlab service. Try to do it.

sudo apt-get remove gitlab-ce 

Then delete the gitlab files from the system. Some files are located in the / etc directory.

Take a look at the official documentation.

+10
source

remove gitlab:

1- Stop the gitlab service

Command: sudo gitlab-ctl stop

2- Start a customer service team

: sudo gitlab-ctl uninstall

3- Uninstall gitlab package

team: Locat gitlab

4- restart the machine

+5
source

This worked on ubuntu 16.04

 sudo apt-get remove gitlab-ce rm -rf /var/opt/gitlab 

- kill the whole process in real time

 pkill -f gitlab 

- Delete paths

 rm -rf /opt/gitlab rm -rf /etc/gitlab rm -rf /var/opt/gitlab 
+3
source

try it

 /opt/gitlab-*/uninstall 
0
source

Source: https://habr.com/ru/post/1244430/


All Articles