From 617cc1f4423494393380fdd4609a9cc0ac0883f2 Mon Sep 17 00:00:00 2001 From: Christian Loos Date: Wed, 15 Dec 2021 08:43:52 +0100 Subject: [PATCH] stop also netbox-housekeeping on DB maintenance --- Troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Troubleshooting.md b/Troubleshooting.md index dbf6df1..0f400a3 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -69,7 +69,7 @@ Restore that database: ```bash # Stop all NetBox instances that access the db -docker-compose stop netbox netbox-worker +docker-compose stop netbox netbox-worker netbox-housekeeping # Restore the DB dump gunzip -c db_dump.sql.gz | docker-compose exec -T postgres sh -c 'psql -U $POSTGRES_USER $POSTGRES_DB'