computer-playbook/roles/docker-nextcloud
2021-10-21 08:19:19 +02:00
..
handlers Changed paths,versions and set environment variables correct 2021-10-21 08:19:19 +02:00
meta Renamed native-nginx-docker-proxy to native-docker-reverse-proxy 2021-01-04 09:49:02 +01:00
tasks Added error email 2021-10-21 07:26:08 +02:00
templates Changed paths,versions and set environment variables correct 2021-10-21 08:19:19 +02:00
README.md Optimized docker nextcloud for backup 2021-10-08 22:08:48 +02:00

role docker-nextcloud

database access

To access the database execute

  docker exec -it nextcloud_database_1 /bin/mysql -u nextcloud -p

update

To update the nextcloud container execute the following commands on the server:

  # Requiered:
  docker stop nextcloud_application_1 && docker rm $(docker ps -aqf "name=nextcloud_application_1") &&
  # Optional:
  docker stop nextcloud_web_1 && docker rm $(docker ps -aqf "name=nextcloud_web_1") &&
  docker stop nextcloud_database_1 && docker rm $(docker ps -aqf "name=nextcloud_database_1") &&
  docker stop nextcloud_cron_1 && docker rm $(docker ps -aqf "name=nextcloud_cron_1") &&
  docker stop nextcloud_redis_1 && docker rm $(docker ps -aqf "name=nextcloud_redis_1")

Afterwards update the nextcloud_version variable to the next version and run the server manager.

You can check the status of the update by typing in:

  docker logs nextcloud_application_1

If nextcloud stays in the maintenance mode after the update try the following:

  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on
  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ upgrade
  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off

If the update process fails execute

  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:repair

and disable the mal functioning apps.

database debuging

  docker exec -it -u www-data nextcloud_database_1 /bin/mysql -u nextcloud -p

occ

To use occ run:

  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ

unlock files

  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on
  docker exec -it nextcloud_database_1 mysql -u nextcloud -pPASSWORD1234132 -D nextcloud -e "delete from oc_file_locks where 1"
  docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off

further information