NEXTCLOUD - Locked Files Locks: Difference between revisions

From IT-Arts.net
imported>Z
No edit summary
 
m Text replacement - "Category:Post-It" to "Category:Wiki"
Line 1: Line 1:
[[Category:Post-It]]
[[Category:Wiki]]





Revision as of 07:21, 9 December 2025



Activate the Maintenance Mode

In the nextcloud installation directory :

cd /var/www/nextcloud
sudo -u www-data php occ maintenance:mode --on


Purge the Database

Use the postgres user :

sudo -u postgres psql --dbname=nextcloud --command="DELETE FROM oc_file_locks WHERE '1'"


Remove the Maintenance Mode

cd /var/www/nextcloud
sudo -u www-data php occ maintenance:mode --off