2020-12-24 14:27:31 +01:00
|
|
|
# role docker-nextcloud
|
|
|
|
|
2022-02-12 20:52:34 +01:00
|
|
|
## update
|
2020-12-26 19:09:26 +01:00
|
|
|
|
|
|
|
To update the nextcloud container execute the following commands on the server:
|
|
|
|
```bash
|
2022-02-12 09:36:55 +01:00
|
|
|
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on
|
|
|
|
sudo python /usr/local/bin/docker-volume-backup/docker-volume-backup.py
|
2022-02-12 20:52:34 +01:00
|
|
|
export COMPOSE_HTTP_TIMEOUT=600
|
|
|
|
export DOCKER_CLIENT_TIMEOUT=600
|
2022-02-12 09:36:55 +01:00
|
|
|
cd /home/administrator/docker-compose/nextcloud && docker-compose down
|
2020-12-26 19:09:26 +01:00
|
|
|
```
|
2021-11-11 14:25:19 +01:00
|
|
|
|
2022-02-12 09:36:55 +01:00
|
|
|
Afterwards update the ***nextcloud_version*** variable to the next version and run the this repository with this ansible role.
|
2020-12-26 19:09:26 +01:00
|
|
|
|
2021-11-11 14:25:19 +01:00
|
|
|
It is only possible to update from one to the next major version at a time
|
|
|
|
|
2022-02-12 09:36:55 +01:00
|
|
|
Wait for the update to finish.
|
|
|
|
|
|
|
|
You can verify that the update is finished by checking the following logs:
|
|
|
|
|
|
|
|
```bash
|
2022-02-12 20:52:34 +01:00
|
|
|
docker logs nextcloud_application_1
|
2022-02-12 09:36:55 +01:00
|
|
|
```
|
|
|
|
|
2022-02-12 20:52:34 +01:00
|
|
|
and
|
2020-12-26 19:09:26 +01:00
|
|
|
|
|
|
|
```bash
|
2022-02-12 20:52:34 +01:00
|
|
|
docker exec -it nextcloud_application_1 top
|
2020-12-26 19:09:26 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
If nextcloud stays in the maintenance mode after the update try the following:
|
|
|
|
|
|
|
|
```bash
|
2022-01-21 18:59:30 +01:00
|
|
|
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
|
2020-12-26 19:09:26 +01:00
|
|
|
```
|
|
|
|
|
2021-08-18 21:01:22 +02:00
|
|
|
If the update process fails execute
|
|
|
|
|
|
|
|
```bash
|
2022-01-21 18:59:30 +01:00
|
|
|
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:repair
|
2021-08-18 21:01:22 +02:00
|
|
|
```
|
|
|
|
|
2022-02-12 09:36:55 +01:00
|
|
|
and disable the not functioning apps.
|
2021-08-18 21:01:22 +02:00
|
|
|
|
2022-02-12 20:52:34 +01:00
|
|
|
## recover latest backup
|
2021-11-11 14:25:19 +01:00
|
|
|
```bash
|
|
|
|
cd /home/administrator/docker-compose/nextcloud &&
|
|
|
|
docker-compose down &&
|
2022-02-12 20:52:34 +01:00
|
|
|
docker exec -i nextcloud_database_1 mysql -u nextcloud -pPASSWORT nextcloud < "/Backups/$(sha256sum /etc/machine-id | head -c 64)/docker-volume-backup/latest/nextcloud_database/sql/backup.sql" &&
|
2021-11-11 14:25:19 +01:00
|
|
|
cd /usr/local/bin/docker-volume-backup &&
|
2022-02-12 20:52:34 +01:00
|
|
|
bash ./docker-volume-recover.sh "nextcloud_data" "$(sha256sum /etc/machine-id | head -c 64)"
|
2021-11-11 14:25:19 +01:00
|
|
|
```
|
|
|
|
|
2022-02-12 20:52:34 +01:00
|
|
|
## database
|
|
|
|
### database access
|
|
|
|
To access the database execute
|
|
|
|
```bash
|
|
|
|
docker exec -it nextcloud_database_1 mysql -u nextcloud -D nextcloud -p
|
|
|
|
```
|
|
|
|
|
|
|
|
### recreate database with new volume:
|
|
|
|
```bash
|
|
|
|
docker run --detach --name nextcloud_database_1 --env MYSQL_USER="nextcloud" --env MYSQL_PASSWORD=PASSWORD --env MYSQL_ROOT_PASSWORD=PASSWORD --env MYSQL_DATABASE="nextcloud" -v nextcloud_database:/var/lib/mysql
|
|
|
|
```
|
|
|
|
|
|
|
|
The process can be checked with:
|
2021-08-18 21:01:22 +02:00
|
|
|
|
|
|
|
```bash
|
2022-02-12 20:52:34 +01:00
|
|
|
show processlist;
|
2021-08-18 21:01:22 +02:00
|
|
|
```
|
2022-02-12 20:52:34 +01:00
|
|
|
|
|
|
|
## occ
|
2020-12-24 14:27:31 +01:00
|
|
|
|
|
|
|
To use occ run:
|
|
|
|
|
|
|
|
```bash
|
2022-01-21 18:59:30 +01:00
|
|
|
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ
|
2020-12-24 14:27:31 +01:00
|
|
|
```
|
2022-02-12 20:52:34 +01:00
|
|
|
|
|
|
|
## app relevant tables
|
2022-01-30 16:13:35 +01:00
|
|
|
- oc_appconfig
|
|
|
|
- oc_migrations
|
|
|
|
|
|
|
|
### initialize duplicates
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ duplicates:find-all --output
|
|
|
|
```
|
2020-12-24 14:27:31 +01:00
|
|
|
|
2022-01-23 11:42:04 +01:00
|
|
|
### unlock files
|
2020-12-24 14:27:31 +01:00
|
|
|
```bash
|
2022-01-21 18:59:30 +01:00
|
|
|
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on
|
2020-12-26 19:09:26 +01:00
|
|
|
docker exec -it nextcloud_database_1 mysql -u nextcloud -pPASSWORD1234132 -D nextcloud -e "delete from oc_file_locks where 1"
|
2022-01-21 18:59:30 +01:00
|
|
|
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off
|
2020-12-24 14:27:31 +01:00
|
|
|
```
|
2021-08-17 22:19:29 +02:00
|
|
|
|
2022-01-23 11:42:04 +01:00
|
|
|
## architecture
|
|
|
|
### Maria DB
|
|
|
|
Until NC24 MariaDB version has to be used.
|
|
|
|
|
2022-01-29 10:21:29 +01:00
|
|
|
## performance
|
|
|
|
### 504 Gateway Timeout
|
2022-01-29 16:39:23 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
docker logs nextcloud_web_1 --tail 1000 | grep 504
|
|
|
|
```
|
2022-01-29 10:21:29 +01:00
|
|
|
|
2022-01-23 11:42:04 +01:00
|
|
|
#### See
|
2022-01-29 16:39:23 +01:00
|
|
|
- https://support.f5.com/csp/article/K48373902
|
2022-01-23 11:42:04 +01:00
|
|
|
- https://github.com/nextcloud/server/issues/25436
|
|
|
|
- https://help.nextcloud.com/t/update-to-next-cloud-21-0-2-has-get-an-error/117028/23?page=2
|
2022-01-29 16:39:23 +01:00
|
|
|
- https://serverfault.com/questions/178671/nginx-php-fpm-504-gateway-time-out-error-with-almost-zero-load-on-a-test-se
|
|
|
|
- https://help.nextcloud.com/t/solved-manual-lemp-install-php-fpm-timing-out/39070
|
2022-01-23 11:42:04 +01:00
|
|
|
|
2021-08-17 22:19:29 +02:00
|
|
|
## further information
|
|
|
|
- https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml
|
2021-08-18 01:51:00 +02:00
|
|
|
- https://goneuland.de/nextcloud-upgrade-auf-neue-versionen-mittels-docker/
|
|
|
|
- https://help.nextcloud.com/t/cant-start-nextcloud-because-the-version-of-the-data-is-higher-than-the-docker-image-version-and-downgrading-is-not-supported/109438
|
2021-08-18 17:36:33 +02:00
|
|
|
- https://github.com/nextcloud/docker/issues/1302
|
2021-08-18 21:01:22 +02:00
|
|
|
- https://help.nextcloud.com/t/update-to-22-failed-with-database-error-updated/120682
|
|
|
|
- https://help.nextcloud.com/t/nc-update-to-21-0-0-beta1-exception-database-error/101124/4
|
|
|
|
- https://wolfgang.gassler.org/reset-password-mariadb-mysql-docker/
|
2021-10-08 22:08:48 +02:00
|
|
|
- https://unix.stackexchange.com/questions/478855/ansible-docker-container-and-depends-on
|
|
|
|
- https://github.com/gdiepen/docker-convenience-scripts
|
2022-02-12 20:52:34 +01:00
|
|
|
- https://help.nextcloud.com/t/several-issues-after-upgrading-to-nextcloud-21/113118/3
|