-
Notifications
You must be signed in to change notification settings - Fork 929
chore: add uninstall steps to remove a Coder OSS deployment from docs
#3742
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4823ae4
chore: add uninstall steps to remove a Coder OSS deployment
sharkymark bb8f5b0
add package uninstall instructions
bpmct 416e2c6
remove warning
bpmct ac7e644
Merge branch 'main' into docs-uninstall-coder
bpmct 7af3fd3
remove configure step
bpmct File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Uninstall | ||
|
||
This article walks you through how to uninstall your Coder server. | ||
|
||
<blockquote class="danger"> | ||
<p> | ||
Uninstalling Coder with the built-in PostgreSQL database will delete the database engine and database. Consider backing up the database directory if you would like to reuse it with a future installation. This does not apply if you have installed your own PostgreSQL database instance. | ||
</p> | ||
</blockquote> | ||
|
||
To uninstall your Coder server, delete the following directories. | ||
|
||
## Cached Coder releases | ||
|
||
```console | ||
rm -rf ~/.cache/coder | ||
``` | ||
|
||
## The Coder server binary and CLI | ||
|
||
Debian, Ubuntu: | ||
|
||
```sh | ||
sudo apt remove coder | ||
``` | ||
|
||
Fedora, CentOS, RHEL, SUSE: | ||
|
||
```sh | ||
sudo yum remove coder | ||
``` | ||
|
||
Alpine: | ||
|
||
```sh | ||
sudo apk del coder | ||
``` | ||
|
||
If you installed Coder manually or used the install script on an unsupported operating system, you can remove the binary directly: | ||
|
||
```console | ||
sudo rm /usr/local/bin/coder | ||
``` | ||
|
||
## Coder as a system service configuration | ||
|
||
```console | ||
sudo rm /etc/coder.d/coder.env | ||
``` | ||
bpmct marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Coder settings and the optional built-in PostgreSQL database | ||
|
||
> There is a `postgres` directory within the `coderv2` directory that has the | ||
> database engine and database. If you want to reuse the database, consider | ||
> not performing the following step or copying the directory to another | ||
> location. | ||
|
||
### macOS | ||
|
||
```console | ||
rm -rf ~/Library/Application\ Support/coderv2 | ||
``` | ||
|
||
### Linux | ||
|
||
```console | ||
rm -rf ~/.config/coderv2 | ||
``` | ||
|
||
### Windows | ||
|
||
```console | ||
C:\Users\USER\AppData\Roaming\coderv2 | ||
``` | ||
|
||
## Up Next | ||
|
||
- [Learn how to configure Coder](./configure.md). |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.