How to remove/uninstall gitlab-runner completely from centos

14,451

Solution 1

If you install gitlab runner binary on Ubuntu 20.04 you can uninstall it completely by run below commands:

sudo gitlab-runner uninstall
sudo rm -rf /usr/local/bin/gitlab-runner
sudo userdel gitlab-runner
sudo rm -rf /home/gitlab-runner/

Solution 2

first:

sudo apt remove gitlab-runner rm -rf /var/opt/gitlab

Kill all process: pkill -f gitlab

then: rm -rf /opt/gitlab rm -rf /etc/gitlab rm -rf /var/opt/gitlab

Share:
14,451
MSA
Author by

MSA

Updated on June 15, 2022

Comments

  • MSA
    MSA almost 2 years

    My gitlab-runner service is not running no matter what I do. I used to have same problem before and when I used to update, and it used to start running but now it’s not starting at all.

    I have uninstalled and then again installed it’s still the same. I guess I am not uninstalling/removing completely. How to uninstall gitlab runner completely or how to start service?

    I also don’t get home dir of gitlab-runner. when I say gitlab-runner list I get following config details.

    ConfigFile=/home/rohith/.gitlab-runner/config.toml
    

    but I try cd to gitlab-runner user dir I don't find the dir at all.