From dca1d5417443fb267adce41b6107913e4a0a4152 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Wed, 16 Mar 2022 14:45:11 +0100 Subject: [PATCH] docs: unsure we restart service after upgrade (#1677) --- docs/admin-manual/setup/upgrade.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/admin-manual/setup/upgrade.md b/docs/admin-manual/setup/upgrade.md index e8b9df1d3..c1a116d3c 100644 --- a/docs/admin-manual/setup/upgrade.md +++ b/docs/admin-manual/setup/upgrade.md @@ -23,6 +23,20 @@ Follow [the install guide](./install.md#download) to download and install the ne Be sure to carefully read **all** the [releases notes](../../../releases), from your current version to the targeted version, to apply upgrade or breaking changes instructions to your installation. +## Restart the services + +Restart all the services to make sure all the changes are applied. + +```bash +sudo systemctl restart \ + libretime-analyzer \ + libretime-api \ + libretime-celery \ + libretime-playout \ + libretime-liquidsoap \ + apache2 +``` + ## Verify Verify that all the services are still running after the install process: @@ -32,8 +46,8 @@ sudo systemctl status \ libretime-analyzer \ libretime-api \ libretime-celery \ - libretime-liquidsoap \ libretime-playout \ + libretime-liquidsoap \ apache2 ```