From e50cce86f5da9431af590e77a3cbc38a57a4d43d Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Wed, 9 Feb 2022 13:02:45 +0100 Subject: [PATCH] Warn about disabling encryption without decrypting all the files See: https://github.com/nextcloud/server/issues/31083 Signed-off-by: Louis Chemineau --- .../configuration_files/encryption_configuration.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/admin_manual/configuration_files/encryption_configuration.rst b/admin_manual/configuration_files/encryption_configuration.rst index e8c2144ba95..e049bf73f16 100644 --- a/admin_manual/configuration_files/encryption_configuration.rst +++ b/admin_manual/configuration_files/encryption_configuration.rst @@ -267,10 +267,14 @@ maintenance mode, and then disable your encryption module with this command:: occ maintenance:mode --on occ encryption:disable - + occ encryption:decrypt-all + Take it out of maintenance mode when you are finished:: occ maintenance:mode --off + +.. warning:: Disabling encryption without decrypting all the files will lead to decryption errors in the future as this state causes unpredictable behaviors. +.. note:: The ``occ encryption:decrypt-all`` can take a lot of time. You can run one user at a time like so: ``occ encryption:decrypt-all ``. Files not encrypted -------------------