NEXTCLOUD - Locked Files Locks

From IT-Arts.net
Revision as of 07:21, 9 December 2025 by Admin (talk | contribs) (Text replacement - "Category:Post-It" to "Category:Wiki")



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