NEXTCLOUD - Locked Files Locks

From wiki.1001solutions.net
Revision as of 12:25, 8 July 2023 by Z (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



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