Forked from joefreewave/gist:ed88dc587eb583c0412bcee87405bcf5
Created
December 2, 2025 16:27
-
-
Save DanielKotik/10618ecbc9312da8fa80881580f26b7c to your computer and use it in GitHub Desktop.
delete/uninstall gitlab runner from ubuntu 22.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # delete/uninstall gitlab runner from ubuntu 22.04 | |
| # Stop and remove the service | |
| sudo gitlab-runner stop | |
| sudo gitlab-runner uninstall | |
| sudo systemctl daemon-reload | |
| # Remove gitlab-runner files and config | |
| sudo rm -rf /usr/local/bin/gitlab-runner | |
| sudo userdel gitlab-runner | |
| sudo rm -rf /home/gitlab-runner/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment