From 57285ca112597c9f6239ec1773e2aebd15578969 Mon Sep 17 00:00:00 2001 From: djperrefort Date: Tue, 6 Aug 2024 11:58:10 -0400 Subject: [PATCH] Adds missing restart steps to update documentation --- docs/install/python.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/install/python.md b/docs/install/python.md index 02be4384..cdc99587 100644 --- a/docs/install/python.md +++ b/docs/install/python.md @@ -200,11 +200,15 @@ 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 ``` @@ -212,10 +216,14 @@ 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 pipx upgrade keystone-api keystone-api migrate keystone-api collectstatic + systemcl start keystone-worker + systemcl start keystone-beat systemcl start keystone-server ```