NextCloud:Disable server-side-encryption: Difference between revisions
Appearance
Created page with "If you need to disable encryption, there’s only one way to do so. Before you do, make certain you have backups of all the files_encrypted files for all users and the system. Here are the steps to disable encryption. * Open a terminal. * Change to the Nextcloud directory with the command cd /var/www/html/nextcloud * Switch the Nextcloud maintenance mode to on with the command sudo -u www-data php occ maintenance:mode --on * Disable encryption with the command..." |
No edit summary |
||
| Line 1: | Line 1: | ||
If you need to disable encryption, there’s only one way to do so. Before you do, make certain you have backups of all the files_encrypted files for all users and the system. | If you need to disable encryption, there’s only one way to do so. Before you do, make certain you have backups of all the <code>files_encrypted</code> files for all users and the system. | ||
Here are the steps to disable encryption. | Here are the steps to disable encryption. | ||
| Line 6: | Line 6: | ||
* Change to the Nextcloud directory with the command | * Change to the Nextcloud directory with the command | ||
<syntaxhighlight lang="shell"> | |||
cd /var/www/html/nextcloud | |||
</syntaxhighlight> | |||
* Switch the Nextcloud maintenance mode to on with the command | * Switch the Nextcloud maintenance mode to on with the command | ||
<syntaxhighlight lang="shell"> | |||
sudo -u www-data php occ maintenance:mode --on | |||
</syntaxhighlight> | |||
* Disable encryption with the command | * Disable encryption with the command | ||
<syntaxhighlight lang="shell"> | |||
sudo -u www-data php occ encryption:disable | |||
</syntaxhighlight> | |||
* Turn off maintenance mode with the command | * Turn off maintenance mode with the command | ||
<syntaxhighlight lang="shell"> | |||
sudo -u www-data php occ maintenance:mode --off | |||
</syntaxhighlight> | |||
== Source == | == Source == | ||
* [https://www.techrepublic.com/article/how-to-enable-server-side-encryption-in-nextcloud/ techrepublic.com] | *[https://www.techrepublic.com/article/how-to-enable-server-side-encryption-in-nextcloud/ techrepublic.com] | ||
* [https://help.nextcloud.com/t/disable-server-side-encryption/125176 nextcloud.com] | *[https://help.nextcloud.com/t/disable-server-side-encryption/125176 nextcloud.com] | ||
[[Category:Software]] | [[Category:Software]] | ||
[[Category:Tutorial]] | [[Category:Tutorial]] | ||
[[Category:NextCloud]] | [[Category:NextCloud]] | ||
Revision as of 14:06, 28 August 2022
If you need to disable encryption, there’s only one way to do so. Before you do, make certain you have backups of all the files_encrypted files for all users and the system.
Here are the steps to disable encryption.
- Open a terminal.
- Change to the Nextcloud directory with the command
cd /var/www/html/nextcloud
- Switch the Nextcloud maintenance mode to on with the command
sudo -u www-data php occ maintenance:mode --on
- Disable encryption with the command
sudo -u www-data php occ encryption:disable
- Turn off maintenance mode with the command
sudo -u www-data php occ maintenance:mode --off