Skip to content

Commit

Permalink
doc linux upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed May 22, 2024
1 parent f3f6732 commit ae4137b
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,36 @@ ExecStart=/opt/openziti/etc/controller/entrypoint.bash run config.yml --verbose
</Tabs>


## Upgrade

### Upgrade to Latest

APT - Debian, Ubuntu, etc.

```text
sudo apt-get install --only-upgrade openziti openziti-controller
```

RPM - RedHat, Fedora, etc.

```text
sudo dnf upgrade openziti openziti-controller
```

### Upgrade to Specific Version

APT - Debian, Ubuntu, etc.

```text
sudo apt-get install openziti=1.0.0 openziti-controller=1.0.0
```

RPM - RedHat, Fedora, etc.

```text
sudo dnf install openziti-1.0.0 openziti-controller-1.0.0
```

## Uninstall

1. Clean the service state.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,38 @@ ExecStart=/opt/openziti/etc/router/entrypoint.bash run config.yml --verbose
</TabItem>
</Tabs>

## Upgrade

The two packages that provide the service and CLI should be upgraded at the same time.

### Upgrade to Latest

APT - Debian, Ubuntu, etc.

```text
sudo apt-get install --only-upgrade openziti openziti-router
```

RPM - RedHat, Fedora, etc.

```text
sudo dnf upgrade openziti openziti-router
```

### Upgrade to Specific Version

APT - Debian, Ubuntu, etc.

```text
sudo apt-get install openziti=1.0.0 openziti-router=1.0.0
```

RPM - RedHat, Fedora, etc.

```text
sudo dnf install openziti-1.0.0 openziti-router-1.0.0
```

## Uninstall

1. Clean the service state.
Expand Down

0 comments on commit ae4137b

Please sign in to comment.