Commit 6c6dcde22bd766867669e771739f08ef56df39f4

Authored by Jacob Vosmaer
1 parent 664ef2e1

Add uninstall instructions

Showing 1 changed file with 15 additions and 0 deletions   Show diff stats
@@ -87,6 +87,21 @@ unicorn['port'] = 3456 @@ -87,6 +87,21 @@ unicorn['port'] = 3456
87 87
88 For Nginx port changes please see the section on enabling HTTPS below. 88 For Nginx port changes please see the section on enabling HTTPS below.
89 89
  90 +### Uninstalling omnibus-gitlab
  91 +
  92 +To uninstall omnibus-gitlab, preserving your data (repositories, database, configuration), run the following commands.
  93 +
  94 +```
  95 +# Stop gitlab and remove its supervision process
  96 +sudo gitlab-ctl uninstall
  97 +
  98 +# Debian/Ubuntu
  99 +sudo dpkg -r gitlab
  100 +
  101 +# Redhat/Centos
  102 +sudo rpm -e gitlab
  103 +```
  104 +
90 ## Updating 105 ## Updating
91 106
92 Instructions for updating your Omnibus installation and upgrading from a manual installation are in the [update doc](doc/update.md). 107 Instructions for updating your Omnibus installation and upgrading from a manual installation are in the [update doc](doc/update.md).