Difference between revisions of "NEXTCLOUD - Locked Files Locks"

From wiki.1001solutions.net
(Created page with "Category:Post-It == Activate the Maintenance Mode == In the nextcloud installation directory : <nowiki> cd /var/www/nextcloud sudo -u www-data php occ maintenance:mo...")
 
 
Line 18: Line 18:
 
Use the postgres user :
 
Use the postgres user :
 
  <nowiki>
 
  <nowiki>
sudo -u postgres psql -d <NEXTCLOUD_DB_NAME> -c "DELETE FROM oc_file_locks WHERE 1"
+
sudo -u postgres psql --dbname=nextcloud --command="DELETE FROM oc_file_locks WHERE '1'"
 
</nowiki>
 
</nowiki>
  

Latest revision as of 12:25, 8 July 2023



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