Skip to content

Commit

Permalink
Adds missing restart steps to update documentation (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort authored Aug 6, 2024
1 parent c1e4cd4 commit 76fcf98
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/install/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,22 +200,30 @@ When upgrading the application, ensure the database and static files are up-to-d

```bash
systemcl stop keystone-server
systemcl stop keystone-beat
systemcl stop keystone-worker

pip install --upgrade keystone-api
keystone-api migrate
keystone-api collectstatic

systemcl start keystone-worker
systemcl start keystone-beat
systemcl start keystone-server
```

=== "pipx"

```bash
systemcl stop keystone-server
systemcl stop keystone-beat
systemcl stop keystone-worker

pipx upgrade keystone-api
keystone-api migrate
keystone-api collectstatic

systemcl start keystone-worker
systemcl start keystone-beat
systemcl start keystone-server
```

0 comments on commit 76fcf98

Please sign in to comment.