Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall gitlab from local ubuntu 14.04 server

Can you please help me to uninstall gitlab. i deleted the /home/gitlab but it still open up when i browse to my hostname. Thank you.

like image 698
Ahmed Commando Avatar asked Mar 04 '16 12:03

Ahmed Commando


2 Answers

This worked on ubuntu 16.04

sudo apt-get remove gitlab-ce

sudo rm -rf /var/opt/gitlab

--kill all process live

sudo pkill -f gitlab

-- Remove paths

sudo rm -rf /opt/gitlab

sudo rm -rf /etc/gitlab

rm -rf /var/opt/gitlab
like image 107
vandersondf Avatar answered Oct 07 '22 08:10

vandersondf


Stop the gitlab service. Try doing.

sudo apt-get remove gitlab-ce

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

Have a look at the official documentation.

like image 30
Aditya Avatar answered Oct 07 '22 07:10

Aditya