Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nextcloud unreachable #5151

Closed
alnitac opened this issue Aug 19, 2024 · 5 comments
Closed

Nextcloud unreachable #5151

alnitac opened this issue Aug 19, 2024 · 5 comments
Labels
0. Needs triage Pending approval or rejection. This issue is pending approval. bug Something isn't working

Comments

@alnitac
Copy link

alnitac commented Aug 19, 2024

Hello,
Since 2 days i can't access my Nextcloud anymore.

It is a demo installation i made for my client.

Thanks for any suggestion.

Steps to reproduce

  1. Try to connect

Expected behavior

Should present login window.

Actual behavior

Erreur interne du serveur
Le serveur est incapable d'exécuter votre requête.
Si cela se reproduit, veuillez envoyer les détails techniques ci-dessous à l'administrateur du serveur.
Le fichier journal du serveur peut fournir plus de renseignements.
Renseignements techniques
Adresse distante : 93.23.95.134
ID de la demande : QObEsLuKHirkOQXj16tj

I get messages that Borgbackup made the daily backup.

Host OS

Running on a VPS from OVHCloud, installed with Debian 10 and Docker
Virtualization: kvm
Operating System: Debian GNU/Linux 10 (buster)
Kernel: Linux 4.19.0-27-cloud-amd64
Architecture: x86-64
Server: Docker Engine - Community
Engine:
Version: 20.10.21
API version: 1.41 (minimum version 1.12)
Go version: go1.18.7

Docker run command or docker-compose file that you used

services:
nextcloud-aio-mastercontainer:
image: nextcloud/all-in-one:latest
init: true
restart: always
container_name: nextcloud-aio-mastercontainer # This line is not allowed to be changed as otherwise AIO will not work correctly
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work
- /var/run/docker.sock:/var/run/docker.sock:ro # May be changed on macOS, Windows or docker rootless. See the applicable documentation. If adjusting, don't forget to also set 'WATCHTOWER_DOCKER_SOCKET_PATH'!
ports:
# - 80:80 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
- 8080:8080
# - 8443:8443 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
environment: # Is needed when using any of the options below
# AIO_DISABLE_BACKUP_SECTION: false # Setting this to true allows to hide the backup section in the AIO interface. See https://github.com/nextcloud/all-in-one#how-to-disable-the-backup-section
APACHE_PORT: 11000 # Is needed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
APACHE_IP_BINDING: 127.0.0.1 # Should be set when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else) that is running on the same host. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
# BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=4 --keep-monthly=6 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy
# COLLABORA_SECCOMP_DISABLED: false # Setting this to true allows to disable Collabora's Seccomp feature. See https://github.com/nextcloud/all-in-one#how-to-disable-collaboras-seccomp-feature
# NEXTCLOUD_DATADIR: /mnt/ncdata # Allows to set the host directory for Nextcloud's datadir. ⚠️⚠️⚠️ Warning: do not set or adjust this value after the initial Nextcloud installation is done! See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir
# NEXTCLOUD_MOUNT: /mnt/ # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
# NEXTCLOUD_UPLOAD_LIMIT: 10G # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-upload-limit-for-nextcloud
# NEXTCLOUD_MAX_TIME: 3600 # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-max-execution-time-for-nextcloud
# NEXTCLOUD_MEMORY_LIMIT: 512M # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-php-memory-limit-for-nextcloud
# NEXTCLOUD_TRUSTED_CACERTS_DIR: /path/to/my/cacerts # CA certificates in this directory will be trusted by the OS of the nexcloud container (Useful e.g. for LDAPS) See See https://github.com/nextcloud/all-in-one#how-to-trust-user-defined-certification-authorities-ca
# NEXTCLOUD_STARTUP_APPS: deck twofactor_totp tasks calendar contacts notes # Allows to modify the Nextcloud apps that are installed on starting AIO the first time. See https://github.com/nextcloud/all-in-one#how-to-change-the-nextcloud-apps-that-are-installed-on-the-first-startup
# NEXTCLOUD_ADDITIONAL_APKS: imagemagick # This allows to add additional packages to the Nextcloud container permanently. Default is imagemagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-os-packages-permanently-to-the-nextcloud-container
# NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS: imagick # This allows to add additional php extensions to the Nextcloud container permanently. Default is imagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-php-extensions-permanently-to-the-nextcloud-container
# NEXTCLOUD_ENABLE_DRI_DEVICE: true # This allows to enable the /dev/dri device in the Nextcloud container. ⚠️⚠️⚠️ Warning: this only works if the '/dev/dri' device is present on the host! If it should not exist on your host, don't set this to true as otherwise the Nextcloud container will fail to start! See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-transcoding-for-nextcloud
# NEXTCLOUD_KEEP_DISABLED_APPS: false # Setting this to true will keep Nextcloud apps that are disabled in the AIO interface and not uninstall them if they should be installed. See https://github.com/nextcloud/all-in-one#how-to-keep-disabled-apps
# TALK_PORT: 3478 # This allows to adjust the port that the talk container is using. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-talk-port
# WATCHTOWER_DOCKER_SOCKET_PATH: /var/run/docker.sock # Needs to be specified if the docker socket on the host is not located in the default '/var/run/docker.sock'. Otherwise mastercontainer updates will fail. For macos it needs to be '/var/run/docker.sock'
# networks: # Is needed when you want to create the nextcloud-aio network with ipv6-support using this file, see the network config at the bottom of the file
# - nextcloud-aio # Is needed when you want to create the nextcloud-aio network with ipv6-support using this file, see the network config at the bottom of the file
# security_opt: ["label:disable"] # Is needed when using SELinux

# Optional: Caddy reverse proxy. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md

# You can find further examples here: #588

caddy:

image: caddy:alpine

restart: always

container_name: caddy

volumes:

- ./Caddyfile:/etc/caddy/Caddyfile

- ./certs:/certs

- ./config:/config

- ./data:/data

- ./sites:/srv

network_mode: "host"

volumes: # If you want to store the data on a different drive, see https://github.com/nextcloud/all-in-one#how-to-store-the-filesinstallation-on-a-separate-drive
nextcloud_aio_mastercontainer:
name: nextcloud_aio_mastercontainer # This line is not allowed to be changed as otherwise the built-in backup solution will not work

# Optional: If you need ipv6, follow step 1 and 2 of https://github.com/nextcloud/all-in-one/blob/main/docker-ipv6-support.md first and then uncomment the below config in order to activate ipv6 for the internal nextcloud-aio network.

# Please make sure to uncomment also the networking lines of the mastercontainer above in order to actually create the network with docker-compose

networks:

nextcloud-aio:

name: nextcloud-aio # This line is not allowed to be changed as otherwise the created network will not be used by the other containers of AIO

driver: bridge

enable_ipv6: true

ipam:

driver: default

config:

- subnet: fd12:3456:789a:2::/64 # IPv6 subnet to use

Nextcloud AIO version

Nextcloud AIO v9.4.1

Other valuable info

I essentially made 2 changes from standard :

  1. Nextcloud is installed behind Caddy following changes provided in compose. The Caddy image is in use in several other sites. It was working as expected
  2. I installed the app external user to authenticate against an other application, it was working as expected
    Everything was working fine several days.

When i got the problem, i removed the external authentication from config.php. It didn't resolve the problem.

mastercontainer log :
2024-08-09T04:00:29.891934613Z Trying to fix docker.sock permissions internally...
2024-08-09T04:00:29.897493451Z Creating docker group internally with id 998
2024-08-09T04:00:30.224384666Z WARNING: No swap limit support
2024-08-09T04:00:30.443633094Z �[0;92mInitial startup of Nextcloud All-in-One complete!
2024-08-09T04:00:30.443656806Z You should be able to open the Nextcloud AIO Interface now on port 8080 of this server!
2024-08-09T04:00:30.443662616Z E.g. https://internal.ip.of.this.server:8080
2024-08-09T04:00:30.443666207Z ⚠️ Important: do always use an ip-address if you access this port and not a domain as HSTS might block access to it later!
2024-08-09T04:00:30.443684626Z
2024-08-09T04:00:30.443688666Z If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatically by opening the Nextcloud AIO Interface via:
2024-08-09T04:00:30.443692212Z https://your-domain-that-points-to-this-server.tld:8443�[0m
2024-08-09T04:00:31.850917319Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:00:31.856567894Z + BACKUP_TIME=04:00
2024-08-09T04:00:31.856609080Z + export BACKUP_TIME
2024-08-09T04:00:31.856618341Z + export DAILY_BACKUP=1
2024-08-09T04:00:31.856624369Z + DAILY_BACKUP=1
2024-08-09T04:00:31.862167730Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:00:31.866023905Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-09T04:00:31.866039530Z + export AUTOMATIC_UPDATES=1
2024-08-09T04:00:31.866044195Z + AUTOMATIC_UPDATES=1
2024-08-09T04:00:31.874200385Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:00:31.875415649Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-09T04:00:31.875431131Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-09T04:00:31.875435316Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-09T04:00:31.875439061Z + set +x
2024-08-09T04:00:31.889864459Z Daily backup script has started
2024-08-09T04:00:31.917527533Z [09-Aug-2024 04:00:31] NOTICE: fpm is running, pid 130
2024-08-09T04:00:31.917943826Z [09-Aug-2024 04:00:31] NOTICE: ready to handle connections
2024-08-09T04:00:31.926697126Z [Fri Aug 09 04:00:31.926422 2024] [mpm_event:notice] [pid 125:tid 125] AH00489: Apache/2.4.62 (Unix) OpenSSL/3.3.1 configured -- resuming normal operations
2024-08-09T04:00:31.926715580Z [Fri Aug 09 04:00:31.926481 2024] [core:notice] [pid 125:tid 125] AH00094: Command line: 'httpd -D FOREGROUND'
2024-08-09T04:00:31.951781948Z {"level":"info","ts":1723176031.9513652,"msg":"using config from file","file":"/Caddyfile"}
2024-08-09T04:00:31.953579046Z {"level":"info","ts":1723176031.9533763,"msg":"adapted config to JSON","adapter":"caddyfile"}
2024-08-09T04:00:31.982736771Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-09T04:00:32.022734632Z Starting mastercontainer update...
2024-08-09T04:00:32.022772156Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-09T04:00:34.143152382Z Waiting for watchtower to stop
2024-08-09T04:01:04.165934286Z Creating daily backup...
2024-08-09T04:01:25.101855644Z Waiting for backup container to stop
2024-08-09T04:01:55.124721768Z Starting and updating containers...
2024-08-09T04:03:06.356565294Z Waiting for the Nextcloud container to start
2024-08-09T04:03:36.413202109Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-09T04:03:36.413845446Z Sending backup notification...
2024-08-09T04:03:46.224776307Z Daily backup script has finished
2024-08-09T04:03:48.685053657Z Deleted Images:
2024-08-09T04:03:48.685093799Z untagged: nextcloud/aio-postgresql@sha256:e3ec1cac63061c0ff08c6aa071a86c1fc5bdce0afa093b4f8bcd24124737d9c7
2024-08-09T04:03:48.685102848Z deleted: sha256:10ce527ce89c79284c3a33f72b6808da6bb579684db86567ee7e0dff7e0927be
2024-08-09T04:03:48.685109548Z deleted: sha256:d9c13013f17317188fff1d8dcd65d54ec984f9ba75d8d7efc4a97ba107ff5d3e
2024-08-09T04:03:48.685122145Z deleted: sha256:df343491c04fdd4618a0fbf3d64939be757eaa3116211276ffed86392cec05e7
2024-08-09T04:03:48.685130417Z deleted: sha256:1a18dd3f31a093366bc961f912bf7a7573ff4530c175a664c5319e70c695a83f
2024-08-09T04:03:48.685137783Z deleted: sha256:51849609a9697315061c15ff8986af54862b5340f12ed87475917de568f9777c
2024-08-09T04:03:48.685145120Z deleted: sha256:106289412c944fa54c997d2f279835127b2180ad73a3cbf233189812f9a8bd8a
2024-08-09T04:03:48.685152143Z deleted: sha256:6716d19bea2a22b5814622076bee50304fd44abfd1c8a0742701db9ba0528d23
2024-08-09T04:03:48.685159677Z deleted: sha256:6d69db815dd4c2a2f0184e011942ec0c04205f4cc0bd40f5b99b4c84b554a1f5
2024-08-09T04:03:48.685167077Z deleted: sha256:6e613fdcb7caa458f95b9b95e122aac9c2e4c02abffc4d3f996b592bcdeb49bc
2024-08-09T04:03:48.685174303Z deleted: sha256:95f9d0d9adebc1ce27b0a96a08ab5885c39c02c5ed840265f007504f67327a52
2024-08-09T04:03:48.685181391Z deleted: sha256:185e175afef3f875779511c6f1ceba356be85f9cfd79660acce7e2b3ed761b51
2024-08-09T04:03:48.685189144Z deleted: sha256:d0bdb5ec1486e171c0121d99116ab0b9928f672824cac7b9d3f9b2b9e6ae9509
2024-08-09T04:03:48.685194243Z deleted: sha256:5a29fb02abd54c50edfcc56fdabb52ce910269a6c221f1d493e0b9ae36050265
2024-08-09T04:03:48.685197888Z deleted: sha256:1574c93ac8f37c6019dcd2bde747e1b87526de32db45e8cffe1a0bb16fe71f3e
2024-08-09T04:03:48.685201483Z deleted: sha256:c9660682a8c8ab6034532e13c08d5146d95ec1c018b9651c0fb0096a2d23fa7e
2024-08-09T04:03:48.685205024Z untagged: nextcloud/aio-nextcloud@sha256:a4d904286589a1d72cdfbb0faf2e3f62ed46b9e2da468710ca043c2706d1951b
2024-08-09T04:03:48.685208866Z deleted: sha256:440b2ddfd61485f65f4e4d0706fd09b851779f60409cb2910520e636cbef44c5
2024-08-09T04:03:48.685212296Z deleted: sha256:5ce66a033d961e8c9ca30994772035aaebd496f4de11bf95aecfaa3ca1df5556
2024-08-09T04:03:48.685229756Z deleted: sha256:b16304690dfe56b9892da49a51c019e5e294087e42e3f04fffb5dce817c93fe9
2024-08-09T04:03:48.685233636Z deleted: sha256:986db0adecc68321d1d0f6f4470179e38b6ad3914432653cd1fcdc6a91a74c9f
2024-08-09T04:03:48.685236976Z deleted: sha256:8c07aaf3e8a07e4c3d61b527856c0e247d7884b49ac66337f6adeb112ed06f0e
2024-08-09T04:03:48.685240298Z deleted: sha256:2ad535aaec9e586a1ef894d13c6d54ba5a0b441c7e1d9a26dde39c14de3ec281
2024-08-09T04:03:48.685243641Z deleted: sha256:032711e659289097869a7c29258487bf40e399f60a23723f375f8f90a1738889
2024-08-09T04:03:48.685248841Z deleted: sha256:14cf03ec19b5492c487f92d3c3044b5b5575fe3499db926a88763c39c0839114
2024-08-09T04:03:48.685252457Z deleted: sha256:343741268185baff7a26ea0b09571aae8d7d4c6fc3e78add0e73f6093b56fb1e
2024-08-09T04:03:48.685255787Z deleted: sha256:d0cc497d1db497bd9b21f144187c75580ed0087e07e7f9d9e383218cdf5d279b
2024-08-09T04:03:48.685259162Z deleted: sha256:65365bedef62db4c3feef6e5bd96cad94fe9399df4910121e1130de20431d08b
2024-08-09T04:03:48.685262457Z deleted: sha256:7ec7bb2a0cf37363f4cab4a61697de1a5c53785f2b8b45aceae0e768ef1986a0
2024-08-09T04:03:48.685265737Z deleted: sha256:eadead3227b43f6780d11007268be1c7b43b2e3b012edb08b7e4c5765b2afc81
2024-08-09T04:03:48.685269127Z deleted: sha256:ce0616ab9cce37f226c065201bff0d3858aa819ebc799e2ea3e52f8eff996d35
2024-08-09T04:03:48.685272524Z deleted: sha256:595556ea4990138aa4492d3ef1c3ba1df668561e8908d22bb2bcd8c113148840
2024-08-09T04:03:48.685275837Z deleted: sha256:17c3e67b8a82b803b33c34f657831ca1fbd6fe859629bd5cd6bd4bdcb1db1166
2024-08-09T04:03:48.685279187Z untagged: nextcloud/aio-notify-push@sha256:f9d66f40d91bcf225543df19c555e2752ce351e2cefb1caa2c265b0ba49fa7c7
2024-08-09T04:03:48.685282542Z deleted: sha256:a6293a6239dd3c8e9a5f0be260d17f91d9ad786786525008461223103864744d
2024-08-09T04:03:48.685285887Z deleted: sha256:71744a10bc353aaedf572c0fcb7b2e76008365e5aca924562303a70b615b8bac
2024-08-09T04:03:48.685289168Z deleted: sha256:b377a8ba3f0089626051d9bb1dcd843b31c50e9def3fa69fa3c54a393c2f8bc8
2024-08-09T04:03:48.685292489Z deleted: sha256:59a68a7c76c8780866881c584516169d44bbb8c9931e5263cc744f4aaccdcd7c
2024-08-09T04:03:48.685295800Z untagged: nextcloud/aio-redis@sha256:d893747ba83722b41b1cd124072e042aab5e8624fa0e316b27de7671e7207e8a
2024-08-09T04:03:48.685312204Z deleted: sha256:ae511d0b2a0be2ab30935b6ffdf4dcfcca1f613d67a7c961bffce1693c873d23
2024-08-09T04:03:48.685315163Z deleted: sha256:2f87c955031d9e153c23ab8fabf4de1df286799eca951a139d26a4cbe959792f
2024-08-09T04:03:48.685318254Z deleted: sha256:cb1d08d53f13a46a67a42f1112c07e3d1bace5ade553026cc9a2ae75caae5cc8
2024-08-09T04:03:48.685321285Z deleted: sha256:6b7fa5fe2bc10181efb7a7d17e40854c6ef57b92c180d0be81c5b18af94315f3
2024-08-09T04:03:48.685324339Z deleted: sha256:a88b884b2777d38921861db8769a55d8a04aec4c34dbd7eaf8b9f1de55069061
2024-08-09T04:03:48.685327350Z deleted: sha256:4899244afb70c49996907ad058af09cbee92efcd56bb229880e185be2e0d46ed
2024-08-09T04:03:48.685334006Z deleted: sha256:3958450c5268a47f3f33aa9431265b0effb1c0deaef31e3c4d7a47af38287058
2024-08-09T04:03:48.685337334Z deleted: sha256:45e1bda24ee47bf0567264236283fdddb86eec09dc59f55de95765c2c6e8cfcd
2024-08-09T04:03:48.685340541Z deleted: sha256:743ff43df712a13ccd7784ad6faf4906aa88eae179c01ea714e871f519589bc6
2024-08-09T04:03:48.685343710Z deleted: sha256:b6304d810b4b6a9c417863d78e05b9370072b2826578eff4a803448a71e97f84
2024-08-09T04:03:48.685347339Z untagged: nextcloud/aio-borgbackup@sha256:bdca507bbd2535c12d11b1ba1f05b4b23d69dacc621b88b0abfc94c1e7a38e70
2024-08-09T04:03:48.685350631Z deleted: sha256:149c2eeea56011db64bd51eb5301be5887a306446256c27790624a7de6854265
2024-08-09T04:03:48.685353815Z deleted: sha256:60b8eee257b0aced319452def97e64b6c4115c7036a991bdb12aa38723e8b449
2024-08-09T04:03:48.685357449Z deleted: sha256:93a210075aab85521eb44614f03a4dce06da7c55762f994799768fd02ef92449
2024-08-09T04:03:48.685360740Z untagged: nextcloud/aio-watchtower@sha256:6eebb9b236d369207634e940271bf7ea4b8b2a46e505786932b6f942fe663fa2
2024-08-09T04:03:48.685363960Z deleted: sha256:8bdffc38b8ebf6c2e5bc849d3ae8b8be9d2dfe2471327f277da490fd382fb30d
2024-08-09T04:03:48.685367173Z deleted: sha256:29b383de346668b002abc7ed3abdf52f0aac1c04b7311c80bc8dbd8f927fc8a6
2024-08-09T04:03:48.685370323Z deleted: sha256:614be341c2f373bd78de1ca1cac3e47e6c0b557a941cfcd56f3da69261330402
2024-08-09T04:03:48.685373501Z deleted: sha256:a5829eca402e031ec625ba984cfa12f28db874e5899a4a222afb27e0b4a7c374
2024-08-09T04:03:48.685376683Z untagged: nextcloud/aio-fulltextsearch@sha256:3b4af62b2d5e4348da541db1f74738e4285203546953a58f9e45db75796ba9ce
2024-08-09T04:03:48.685379921Z deleted: sha256:199997452d2af3eaaea6fde81ed19e36375a78608c4018a0e456616677e61e69
2024-08-09T04:03:48.685383058Z deleted: sha256:66d1341c4f6de6a27c9068cb0a276b5fda4e6a730ffaa57edf820988715b7ad3
2024-08-09T04:03:48.685386220Z untagged: nextcloud/aio-apache@sha256:18178e3b43ec74398af3d6702623ffdee075e9ad419d76d8f17657ecb8d65229
2024-08-09T04:03:48.685389486Z deleted: sha256:f58b4b241f0d0cf945bff74b1b3f831afc748ce49babdf61320f3a14d10a0177
2024-08-09T04:03:48.685392613Z deleted: sha256:e0ed0eb57db52b5ce2dfe7d8d3132bcc5384e22997af72534472bbba04b3d0af
2024-08-09T04:03:48.685395761Z deleted: sha256:f56d0dc447b51743c47f043d657277441be96f7c68b0d36cbadda1e0e0b60d46
2024-08-09T04:03:48.685398988Z deleted: sha256:87491cd2494ddde9086500dfffab1571ac34481ffa6d7bbf1f5b0d48f0d3a248
2024-08-09T04:03:48.685402146Z deleted: sha256:5d8adfb402edcf578fd01ae2a036dbe8ae1e74ea361b51842b09254d976a4cb9
2024-08-09T04:03:48.685405285Z deleted: sha256:d50508b90bea82130acf284bb05819b3a2b37d58b338b878b067da2fc1c12b4d
2024-08-09T04:03:48.685421164Z deleted: sha256:c0acb2e832497c9275ee4cf2967fa23b26a511a0303cc9113731f0e9375791d4
2024-08-09T04:03:48.685425082Z deleted: sha256:370a78f995fc1c0876753a79ab945cec314d65a51f78e0d650c684427a5637cf
2024-08-09T04:03:48.685428264Z deleted: sha256:9686213e0341d20447f60dcfeff9acd7230ae19f0e891d05db717902c8eb9f14
2024-08-09T04:03:48.685431440Z deleted: sha256:6c1d4161dd0bc0f398ed23ca1673504424877541d4f7b3917242a1b7585941e2
2024-08-09T04:03:48.685437781Z deleted: sha256:7e5795d0a2b205920be5f9c8752ba07c440819144ff650a8e81ce8f066501f1e
2024-08-09T04:03:48.685441770Z deleted: sha256:f438e2ac37d27d3e06e0616065146f3967e5d667762278d6505695e4a826626b
2024-08-09T04:03:48.685445090Z deleted: sha256:18bfd9ea8a97a005feeb5389d8aa5c85a2b1948a16d556c48d2c27f8b8893f22
2024-08-09T04:03:48.685448239Z deleted: sha256:26bf0baccaf8587c75b53804baf4d10f5aadc41988c0c1bfc2c55e642ac626f9
2024-08-09T04:03:48.685451452Z
2024-08-09T04:03:48.685454464Z Total reclaimed space: 1.624GB
2024-08-09T04:04:48.753627437Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:04:48.754755677Z + BACKUP_TIME=04:00
2024-08-09T04:04:48.754771883Z + export BACKUP_TIME
2024-08-09T04:04:48.754777888Z + export DAILY_BACKUP=1
2024-08-09T04:04:48.754782583Z + DAILY_BACKUP=1
2024-08-09T04:04:48.755151666Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:04:48.756169540Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-09T04:04:48.756199422Z + export AUTOMATIC_UPDATES=1
2024-08-09T04:04:48.756205758Z + AUTOMATIC_UPDATES=1
2024-08-09T04:04:48.758119597Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-09T04:04:48.759159022Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-09T04:04:48.759175935Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-09T04:04:48.759181960Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-09T04:04:48.759206511Z + set +x
2024-08-09T14:05:38.125502541Z [09-Aug-2024 14:05:37] WARNING: [pool www] child 11934 exited on signal 9 (SIGKILL) after 45.182602 seconds from start
2024-08-09T14:05:38.125925369Z [09-Aug-2024 14:05:37] NOTICE: [pool www] child 11938 started
2024-08-10T04:00:11.992048444Z Daily backup script has started
2024-08-10T04:00:12.141364052Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-10T04:00:12.182319591Z Starting mastercontainer update...
2024-08-10T04:00:12.182351044Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-10T04:00:14.414958087Z Waiting for watchtower to stop
2024-08-10T04:00:44.442558287Z Creating daily backup...
2024-08-10T04:01:03.934809982Z Waiting for backup container to stop
2024-08-10T04:01:33.960508445Z Starting and updating containers...
2024-08-10T04:01:45.154520872Z Waiting for the Nextcloud container to start
2024-08-10T04:02:15.255364136Z Waiting for the Nextcloud container to start
2024-08-10T04:02:45.300576444Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-10T04:02:45.300624740Z Sending backup notification...
2024-08-10T04:02:53.915663707Z Daily backup script has finished
2024-08-10T04:02:56.097636072Z Total reclaimed space: 0B
2024-08-10T04:03:56.166570027Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-10T04:03:56.167386055Z + BACKUP_TIME=04:00
2024-08-10T04:03:56.167411046Z + export BACKUP_TIME
2024-08-10T04:03:56.167415481Z + export DAILY_BACKUP=1
2024-08-10T04:03:56.167479872Z + DAILY_BACKUP=1
2024-08-10T04:03:56.168738668Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-10T04:03:56.169794588Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-10T04:03:56.169806054Z + export AUTOMATIC_UPDATES=1
2024-08-10T04:03:56.169809594Z + AUTOMATIC_UPDATES=1
2024-08-10T04:03:56.171064254Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-10T04:03:56.171768128Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-10T04:03:56.171987501Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-10T04:03:56.172022316Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-10T04:03:56.172030775Z + set +x
2024-08-11T04:00:02.596998898Z Daily backup script has started
2024-08-11T04:00:02.658419805Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-11T04:00:02.702198283Z Starting mastercontainer update...
2024-08-11T04:00:02.702248029Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-11T04:00:05.171690238Z Waiting for watchtower to stop
2024-08-11T04:00:35.195587027Z Creating daily backup...
2024-08-11T04:00:54.093039744Z Waiting for backup container to stop
2024-08-11T04:01:24.118981167Z Starting and updating containers...
2024-08-11T04:01:35.147579253Z Waiting for the Nextcloud container to start
2024-08-11T04:02:05.191916537Z Waiting for the Nextcloud container to start
2024-08-11T04:02:35.247237429Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-11T04:02:35.247546198Z Sending backup notification...
2024-08-11T04:02:44.818208258Z Daily backup script has finished
2024-08-11T04:02:44.922612465Z Total reclaimed space: 0B
2024-08-11T04:03:44.986685331Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-11T04:03:44.987621404Z + BACKUP_TIME=04:00
2024-08-11T04:03:44.987634240Z + export BACKUP_TIME
2024-08-11T04:03:44.987637844Z + export DAILY_BACKUP=1
2024-08-11T04:03:44.987640911Z + DAILY_BACKUP=1
2024-08-11T04:03:44.989095024Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-11T04:03:44.989897168Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-11T04:03:44.989985533Z + export AUTOMATIC_UPDATES=1
2024-08-11T04:03:44.989994423Z + AUTOMATIC_UPDATES=1
2024-08-11T04:03:44.990483456Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-11T04:03:44.991240746Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-11T04:03:44.991252596Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-11T04:03:44.991256107Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-11T04:03:44.991267615Z + set +x
2024-08-12T04:00:21.364402819Z Daily backup script has started
2024-08-12T04:00:21.416148911Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-12T04:00:21.458279738Z Starting mastercontainer update...
2024-08-12T04:00:21.458319898Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-12T04:00:23.698482899Z Waiting for watchtower to stop
2024-08-12T04:00:53.725268415Z Creating daily backup...
2024-08-12T04:01:12.394665370Z Waiting for backup container to stop
2024-08-12T04:01:42.417319376Z Starting and updating containers...
2024-08-12T04:01:53.548003228Z Waiting for the Nextcloud container to start
2024-08-12T04:02:23.608565579Z Waiting for the Nextcloud container to start
2024-08-12T04:02:53.674419156Z Waiting for the Nextcloud container to start
2024-08-12T04:03:23.724422463Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-12T04:03:23.724516424Z Sending backup notification...
2024-08-12T04:03:33.779065885Z Daily backup script has finished
2024-08-12T04:03:33.873357420Z Total reclaimed space: 0B
2024-08-12T04:04:33.934484834Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-12T04:04:33.935590896Z + BACKUP_TIME=04:00
2024-08-12T04:04:33.935617538Z + export BACKUP_TIME
2024-08-12T04:04:33.935629524Z + export DAILY_BACKUP=1
2024-08-12T04:04:33.935633053Z + DAILY_BACKUP=1
2024-08-12T04:04:33.937362487Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-12T04:04:33.938435361Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-12T04:04:33.938448631Z + export AUTOMATIC_UPDATES=1
2024-08-12T04:04:33.938452618Z + AUTOMATIC_UPDATES=1
2024-08-12T04:04:33.940085401Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-12T04:04:33.941099624Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-12T04:04:33.941113459Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-12T04:04:33.941117576Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-12T04:04:33.941120957Z + set +x
2024-08-13T04:00:11.683544812Z Daily backup script has started
2024-08-13T04:00:11.744026298Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-13T04:00:11.785896394Z Starting mastercontainer update...
2024-08-13T04:00:11.785921426Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-13T04:00:13.954521656Z Waiting for watchtower to stop
2024-08-13T04:00:43.978246599Z Creating daily backup...
2024-08-13T04:01:03.484222602Z Waiting for backup container to stop
2024-08-13T04:01:33.512082221Z Starting and updating containers...
2024-08-13T04:01:44.648133033Z Waiting for the Nextcloud container to start
2024-08-13T04:02:14.744903678Z Waiting for the Nextcloud container to start
2024-08-13T04:02:44.792917073Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-13T04:02:44.793444365Z Sending backup notification...
2024-08-13T04:02:54.550914467Z Daily backup script has finished
2024-08-13T04:02:54.643222007Z Total reclaimed space: 0B
2024-08-13T04:03:54.711298790Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-13T04:03:54.712076882Z + BACKUP_TIME=04:00
2024-08-13T04:03:54.712093427Z + export BACKUP_TIME
2024-08-13T04:03:54.712097471Z + export DAILY_BACKUP=1
2024-08-13T04:03:54.712299086Z + DAILY_BACKUP=1
2024-08-13T04:03:54.714022827Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-13T04:03:54.714832617Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-13T04:03:54.715147271Z + export AUTOMATIC_UPDATES=1
2024-08-13T04:03:54.715162796Z + AUTOMATIC_UPDATES=1
2024-08-13T04:03:54.716702113Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-13T04:03:54.717535003Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-13T04:03:54.717773224Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-13T04:03:54.717795764Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-13T04:03:54.717799795Z + set +x
2024-08-14T04:00:01.200784764Z Daily backup script has started
2024-08-14T04:00:01.257317373Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-14T04:00:01.301504365Z Starting mastercontainer update...
2024-08-14T04:00:01.301539266Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-14T04:00:03.636812646Z Waiting for watchtower to stop
2024-08-14T04:00:33.659505544Z Creating daily backup...
2024-08-14T04:00:52.330065095Z Waiting for backup container to stop
2024-08-14T04:01:22.353170120Z Starting and updating containers...
2024-08-14T04:01:33.584818083Z Waiting for the Nextcloud container to start
2024-08-14T04:02:03.711883029Z Waiting for the Nextcloud container to start
2024-08-14T04:02:33.759611883Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-14T04:02:33.760073811Z Sending backup notification...
2024-08-14T04:02:43.319243376Z Daily backup script has finished
2024-08-14T04:02:43.411912773Z Total reclaimed space: 0B
2024-08-14T04:03:43.469093179Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-14T04:03:43.470268831Z + BACKUP_TIME=04:00
2024-08-14T04:03:43.470357925Z + export BACKUP_TIME
2024-08-14T04:03:43.470370835Z + export DAILY_BACKUP=1
2024-08-14T04:03:43.470377528Z + DAILY_BACKUP=1
2024-08-14T04:03:43.471824093Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-14T04:03:43.472977992Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-14T04:03:43.473018093Z + export AUTOMATIC_UPDATES=1
2024-08-14T04:03:43.473029446Z + AUTOMATIC_UPDATES=1
2024-08-14T04:03:43.473443958Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-14T04:03:43.474555378Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-14T04:03:43.474567889Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-14T04:03:43.474571493Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-14T04:03:43.474574644Z + set +x
2024-08-15T04:00:19.877383259Z Daily backup script has started
2024-08-15T04:00:19.930309516Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-15T04:00:19.968136288Z Starting mastercontainer update...
2024-08-15T04:00:19.968196519Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-15T04:00:22.166795602Z Waiting for watchtower to stop
2024-08-15T04:00:52.191830949Z Creating daily backup...
2024-08-15T04:01:10.760671701Z Waiting for backup container to stop
2024-08-15T04:01:40.783926504Z Starting and updating containers...
2024-08-15T04:01:51.751997473Z Waiting for the Nextcloud container to start
2024-08-15T04:02:21.859143674Z Waiting for the Nextcloud container to start
2024-08-15T04:02:51.923325609Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-15T04:02:51.923596737Z Sending backup notification...
2024-08-15T04:03:01.431037892Z Daily backup script has finished
2024-08-15T04:03:01.528808167Z Total reclaimed space: 0B
2024-08-15T04:04:01.589633212Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-15T04:04:01.590745780Z + BACKUP_TIME=04:00
2024-08-15T04:04:01.590765131Z + export BACKUP_TIME
2024-08-15T04:04:01.590780311Z + export DAILY_BACKUP=1
2024-08-15T04:04:01.590783988Z + DAILY_BACKUP=1
2024-08-15T04:04:01.591159421Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-15T04:04:01.591987006Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-15T04:04:01.591999611Z + export AUTOMATIC_UPDATES=1
2024-08-15T04:04:01.592003136Z + AUTOMATIC_UPDATES=1
2024-08-15T04:04:01.592487555Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-15T04:04:01.593453327Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-15T04:04:01.593468652Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-15T04:04:01.593472947Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-15T04:04:01.593476413Z + set +x
2024-08-16T04:00:08.101355104Z Daily backup script has started
2024-08-16T04:00:08.160870602Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-16T04:00:08.201018890Z Starting mastercontainer update...
2024-08-16T04:00:08.201044884Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-16T04:00:10.398232834Z Waiting for watchtower to stop
2024-08-16T04:00:40.429714816Z Creating daily backup...
2024-08-16T04:00:58.485911506Z Waiting for backup container to stop
2024-08-16T04:01:28.510026734Z Starting and updating containers...
2024-08-16T04:01:39.691716222Z Waiting for the Nextcloud container to start
2024-08-16T04:02:09.797675942Z Waiting for the Nextcloud container to start
2024-08-16T04:02:39.839464152Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-16T04:02:39.840324727Z Sending backup notification...
2024-08-16T04:02:49.695518954Z Daily backup script has finished
2024-08-16T04:02:49.784457939Z Total reclaimed space: 0B
2024-08-16T04:03:49.843835026Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-16T04:03:49.844804280Z + BACKUP_TIME=04:00
2024-08-16T04:03:49.844817620Z + export BACKUP_TIME
2024-08-16T04:03:49.844821712Z + export DAILY_BACKUP=1
2024-08-16T04:03:49.844838900Z + DAILY_BACKUP=1
2024-08-16T04:03:49.845157204Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-16T04:03:49.846291139Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-16T04:03:49.846302346Z + export AUTOMATIC_UPDATES=1
2024-08-16T04:03:49.846305884Z + AUTOMATIC_UPDATES=1
2024-08-16T04:03:49.846745158Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-16T04:03:49.848027539Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-16T04:03:49.848045510Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-16T04:03:49.848096825Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-16T04:03:49.848102684Z + set +x
2024-08-17T04:00:26.450241221Z Daily backup script has started
2024-08-17T04:00:26.519499900Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-17T04:00:26.573460246Z Starting mastercontainer update...
2024-08-17T04:00:26.573490379Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-17T04:00:28.762733867Z Waiting for watchtower to stop
2024-08-17T04:00:58.791697310Z Creating daily backup...
2024-08-17T04:01:16.996186000Z Waiting for backup container to stop
2024-08-17T04:01:47.019366735Z Starting and updating containers...
2024-08-17T04:01:58.086217519Z Waiting for the Nextcloud container to start
2024-08-17T04:02:28.130420993Z Waiting for the Nextcloud container to start
2024-08-17T04:02:58.176845957Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-17T04:02:58.177201228Z Sending backup notification...
2024-08-17T04:03:07.908894219Z Daily backup script has finished
2024-08-17T04:03:10.078167030Z Total reclaimed space: 0B
2024-08-17T04:04:10.143676585Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T04:04:10.144824210Z + BACKUP_TIME=04:00
2024-08-17T04:04:10.144843531Z + export BACKUP_TIME
2024-08-17T04:04:10.144847709Z + export DAILY_BACKUP=1
2024-08-17T04:04:10.144851005Z + DAILY_BACKUP=1
2024-08-17T04:04:10.146072663Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T04:04:10.147232603Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-17T04:04:10.147246859Z + export AUTOMATIC_UPDATES=1
2024-08-17T04:04:10.147250851Z + AUTOMATIC_UPDATES=1
2024-08-17T04:04:10.148549879Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T04:04:10.149489070Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-17T04:04:10.149501947Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-17T04:04:10.149507337Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-17T04:04:10.149512270Z + set +x
2024-08-17T15:37:34.292333603Z Deleting duplicate sessions
2024-08-17T15:37:44.082443798Z NOTICE: PHP message: 404 Not Found
2024-08-17T15:37:44.082484241Z Type: Slim\Exception\HttpNotFoundException
2024-08-17T15:37:44.082490474Z Code: 404
2024-08-17T15:37:44.082494001Z Message: Not found.
2024-08-17T15:37:44.082497622Z File: /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php
2024-08-17T15:37:44.082501256Z Line: 76
2024-08-17T15:37:44.082504586Z Trace: #0 /var/www/docker-aio/php/vendor/slim/slim/Slim/Routing/RouteRunner.php(62): Slim\Middleware\RoutingMiddleware->performRouting(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082522733Z #1 /var/www/docker-aio/php/vendor/slim/csrf/src/Guard.php(482): Slim\Routing\RouteRunner->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082526601Z #2 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(177): Slim\Csrf\Guard->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Slim\Routing\RouteRunner))
2024-08-17T15:37:44.082530323Z #3 /var/www/docker-aio/php/vendor/slim/twig-view/src/TwigMiddleware.php(115): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082533827Z #4 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Views\TwigMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:37:44.082537494Z #5 /var/www/docker-aio/php/src/Middleware/AuthMiddleware.php(38): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082540834Z #6 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(280): AIO\Middleware\AuthMiddleware->__invoke(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:37:44.082544748Z #7 /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php(77): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082548115Z #8 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\ErrorMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:37:44.082563505Z #9 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(73): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082568165Z #10 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(209): Slim\MiddlewareDispatcher->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082571560Z #11 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(193): Slim\App->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:37:44.082574828Z #12 /var/www/docker-aio/php/public/index.php(185): Slim\App->run()
2024-08-17T15:37:44.082578009Z #13 {main}
2024-08-17T15:37:44.082580815Z Tips: To display error details in HTTP response set "displayErrorDetails" to true in the ErrorHandler constructor.
2024-08-17T15:39:07.963284500Z NOTICE: PHP message: 404 Not Found
2024-08-17T15:39:07.963331784Z Type: Slim\Exception\HttpNotFoundException
2024-08-17T15:39:07.963340661Z Code: 404
2024-08-17T15:39:07.963344621Z Message: Not found.
2024-08-17T15:39:07.963348124Z File: /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php
2024-08-17T15:39:07.963352381Z Line: 76
2024-08-17T15:39:07.963357863Z Trace: #0 /var/www/docker-aio/php/vendor/slim/slim/Slim/Routing/RouteRunner.php(62): Slim\Middleware\RoutingMiddleware->performRouting(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963381297Z #1 /var/www/docker-aio/php/vendor/slim/csrf/src/Guard.php(482): Slim\Routing\RouteRunner->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963389134Z #2 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(177): Slim\Csrf\Guard->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Slim\Routing\RouteRunner))
2024-08-17T15:39:07.963395212Z #3 /var/www/docker-aio/php/vendor/slim/twig-view/src/TwigMiddleware.php(115): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963400765Z #4 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Views\TwigMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:39:07.963406235Z #5 /var/www/docker-aio/php/src/Middleware/AuthMiddleware.php(38): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963411449Z #6 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(280): AIO\Middleware\AuthMiddleware->__invoke(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:39:07.963417034Z #7 /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php(77): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963422292Z #8 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\ErrorMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T15:39:07.963427912Z #9 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(73): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963435742Z #10 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(209): Slim\MiddlewareDispatcher->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963441347Z #11 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(193): Slim\App->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T15:39:07.963446665Z #12 /var/www/docker-aio/php/public/index.php(185): Slim\App->run()
2024-08-17T15:39:07.963451595Z #13 {main}
2024-08-17T15:39:07.963456748Z Tips: To display error details in HTTP response set "displayErrorDetails" to true in the ErrorHandler constructor.
2024-08-17T16:18:47.941768620Z NOTICE: PHP message: 404 Not Found
2024-08-17T16:18:47.941838276Z Type: Slim\Exception\HttpNotFoundException
2024-08-17T16:18:47.941843740Z Code: 404
2024-08-17T16:18:47.941846976Z Message: Not found.
2024-08-17T16:18:47.941850093Z File: /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php
2024-08-17T16:18:47.941853718Z Line: 76
2024-08-17T16:18:47.941856945Z Trace: #0 /var/www/docker-aio/php/vendor/slim/slim/Slim/Routing/RouteRunner.php(62): Slim\Middleware\RoutingMiddleware->performRouting(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941874937Z #1 /var/www/docker-aio/php/vendor/slim/csrf/src/Guard.php(482): Slim\Routing\RouteRunner->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941878530Z #2 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(177): Slim\Csrf\Guard->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Slim\Routing\RouteRunner))
2024-08-17T16:18:47.941881750Z #3 /var/www/docker-aio/php/vendor/slim/twig-view/src/TwigMiddleware.php(115): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941885017Z #4 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Views\TwigMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T16:18:47.941888229Z #5 /var/www/docker-aio/php/src/Middleware/AuthMiddleware.php(38): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941891272Z #6 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(280): AIO\Middleware\AuthMiddleware->__invoke(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T16:18:47.941894560Z #7 /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php(77): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941897810Z #8 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\ErrorMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-17T16:18:47.941900964Z #9 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(73): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941905617Z #10 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(209): Slim\MiddlewareDispatcher->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941908827Z #11 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(193): Slim\App->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-17T16:18:47.941911757Z #12 /var/www/docker-aio/php/public/index.php(185): Slim\App->run()
2024-08-17T16:18:47.941914682Z #13 {main}
2024-08-17T16:18:47.941917232Z Tips: To display error details in HTTP response set "displayErrorDetails" to true in the ErrorHandler constructor.
2024-08-17T16:47:28.816585623Z WARNING: No swap limit support
2024-08-17T16:47:28.999116363Z �[0;92mInitial startup of Nextcloud All-in-One complete!
2024-08-17T16:47:28.999140770Z You should be able to open the Nextcloud AIO Interface now on port 8080 of this server!
2024-08-17T16:47:28.999162783Z E.g. https://internal.ip.of.this.server:8080
2024-08-17T16:47:28.999166511Z ⚠️ Important: do always use an ip-address if you access this port and not a domain as HSTS might block access to it later!
2024-08-17T16:47:28.999179419Z
2024-08-17T16:47:28.999182553Z If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatically by opening the Nextcloud AIO Interface via:
2024-08-17T16:47:28.999185939Z https://your-domain-that-points-to-this-server.tld:8443�[0m
2024-08-17T16:47:30.684576832Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T16:47:30.696034202Z + BACKUP_TIME=04:00
2024-08-17T16:47:30.696064089Z + export BACKUP_TIME
2024-08-17T16:47:30.696068225Z + export DAILY_BACKUP=1
2024-08-17T16:47:30.696071306Z + DAILY_BACKUP=1
2024-08-17T16:47:30.701428357Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T16:47:30.705817545Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-17T16:47:30.705832154Z + export AUTOMATIC_UPDATES=1
2024-08-17T16:47:30.705835957Z + AUTOMATIC_UPDATES=1
2024-08-17T16:47:30.712484821Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-17T16:47:30.713570669Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-17T16:47:30.713583189Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-17T16:47:30.713586752Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-17T16:47:30.713589790Z + set +x
2024-08-17T16:47:30.736978485Z [17-Aug-2024 16:47:30] NOTICE: fpm is running, pid 121
2024-08-17T16:47:30.737267383Z [17-Aug-2024 16:47:30] NOTICE: ready to handle connections
2024-08-17T16:47:30.746124044Z [Sat Aug 17 16:47:30.745777 2024] [mpm_event:notice] [pid 116:tid 116] AH00489: Apache/2.4.62 (Unix) OpenSSL/3.3.1 configured -- resuming normal operations
2024-08-17T16:47:30.746145408Z [Sat Aug 17 16:47:30.745856 2024] [core:notice] [pid 116:tid 116] AH00094: Command line: 'httpd -D FOREGROUND'
2024-08-17T16:47:30.779590389Z {"level":"info","ts":1723913250.778654,"msg":"using config from file","file":"/Caddyfile"}
2024-08-17T16:47:30.782500225Z {"level":"info","ts":1723913250.7816613,"msg":"adapted config to JSON","adapter":"caddyfile"}
2024-08-17T16:59:02.380049346Z [Sat Aug 17 16:59:02.379578 2024] [proxy:error] [pid 457:tid 479] (70008)Partial results are valid but processing is incomplete: [client 185.91.69.110:50958] AH01095: prefetch request body failed to 127.0.0.1:8000 (127.0.0.1) from 185.91.69.110 ()
2024-08-18T04:00:03.735812791Z Daily backup script has started
2024-08-18T04:00:03.829541252Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-18T04:00:03.882902726Z Starting mastercontainer update...
2024-08-18T04:00:03.882965748Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-18T04:00:06.153982833Z Waiting for watchtower to stop
2024-08-18T04:00:36.194837911Z Creating daily backup...
2024-08-18T04:00:55.915300260Z Waiting for backup container to stop
2024-08-18T04:01:25.939582561Z Starting and updating containers...
2024-08-18T04:01:36.990148628Z Waiting for the Nextcloud container to start
2024-08-18T04:02:07.054769107Z Waiting for the Nextcloud container to start
2024-08-18T04:02:37.108382273Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-18T04:02:37.108942685Z Sending backup notification...
2024-08-18T04:02:46.772761212Z Daily backup script has finished
2024-08-18T04:02:46.869553660Z Total reclaimed space: 0B
2024-08-18T04:03:46.929416459Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-18T04:03:46.929779549Z + BACKUP_TIME=04:00
2024-08-18T04:03:46.929797647Z + export BACKUP_TIME
2024-08-18T04:03:46.929804710Z + export DAILY_BACKUP=1
2024-08-18T04:03:46.929843578Z + DAILY_BACKUP=1
2024-08-18T04:03:46.930210279Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-18T04:03:46.930594319Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-18T04:03:46.930610625Z + export AUTOMATIC_UPDATES=1
2024-08-18T04:03:46.930617236Z + AUTOMATIC_UPDATES=1
2024-08-18T04:03:46.931010893Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-18T04:03:46.931527263Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-18T04:03:46.931565753Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-18T04:03:46.931574059Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-18T04:03:46.931579265Z + set +x
2024-08-19T04:00:23.720941673Z Daily backup script has started
2024-08-19T04:00:23.786351229Z Connection to nextcloud-aio-apache (192.168.96.8) 11000 port [tcp/] succeeded!
2024-08-19T04:00:23.828388295Z Starting mastercontainer update...
2024-08-19T04:00:23.828487002Z (The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
2024-08-19T04:00:26.011029745Z Waiting for watchtower to stop
2024-08-19T04:00:56.034989907Z Creating daily backup...
2024-08-19T04:01:13.800803139Z Waiting for backup container to stop
2024-08-19T04:01:43.818566445Z Starting and updating containers...
2024-08-19T04:01:54.869262895Z Waiting for the Nextcloud container to start
2024-08-19T04:02:24.909317078Z Waiting for the Nextcloud container to start
2024-08-19T04:02:54.960077935Z Connection to nextcloud-aio-nextcloud (192.168.96.6) 9000 port [tcp/
] succeeded!
2024-08-19T04:02:54.960851232Z Sending backup notification...
2024-08-19T04:03:04.664481131Z Daily backup script has finished
2024-08-19T04:03:04.764546076Z Total reclaimed space: 0B
2024-08-19T04:04:04.826073124Z ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
2024-08-19T04:04:04.827029320Z + BACKUP_TIME=04:00
2024-08-19T04:04:04.827042287Z + export BACKUP_TIME
2024-08-19T04:04:04.827045953Z + export DAILY_BACKUP=1
2024-08-19T04:04:04.827048869Z + DAILY_BACKUP=1
2024-08-19T04:04:04.828408688Z ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
2024-08-19T04:04:04.829455953Z + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
2024-08-19T04:04:04.829471131Z + export AUTOMATIC_UPDATES=1
2024-08-19T04:04:04.829474831Z + AUTOMATIC_UPDATES=1
2024-08-19T04:04:04.829774674Z ++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
2024-08-19T04:04:04.830747346Z + '[' '' '!=' successNotificationsAreNotEnabled ']'
2024-08-19T04:04:04.830758530Z + export SEND_SUCCESS_NOTIFICATIONS=1
2024-08-19T04:04:04.830762135Z + SEND_SUCCESS_NOTIFICATIONS=1
2024-08-19T04:04:04.830765014Z + set +x
2024-08-19T09:18:32.786582519Z Deleting duplicate sessions
2024-08-19T09:18:46.986360738Z NOTICE: PHP message: 404 Not Found
2024-08-19T09:18:46.986400417Z Type: Slim\Exception\HttpNotFoundException
2024-08-19T09:18:46.986407031Z Code: 404
2024-08-19T09:18:46.986412749Z Message: Not found.
2024-08-19T09:18:46.986418441Z File: /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php
2024-08-19T09:18:46.986424259Z Line: 76
2024-08-19T09:18:46.986429689Z Trace: #0 /var/www/docker-aio/php/vendor/slim/slim/Slim/Routing/RouteRunner.php(62): Slim\Middleware\RoutingMiddleware->performRouting(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986436511Z #1 /var/www/docker-aio/php/vendor/slim/csrf/src/Guard.php(482): Slim\Routing\RouteRunner->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986442441Z #2 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(177): Slim\Csrf\Guard->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Slim\Routing\RouteRunner))
2024-08-19T09:18:46.986448682Z #3 /var/www/docker-aio/php/vendor/slim/twig-view/src/TwigMiddleware.php(115): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986455392Z #4 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Views\TwigMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-19T09:18:46.986462218Z #5 /var/www/docker-aio/php/src/Middleware/AuthMiddleware.php(38): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986474480Z #6 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(280): AIO\Middleware\AuthMiddleware->__invoke(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-19T09:18:46.986481545Z #7 /var/www/docker-aio/php/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php(77): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986521086Z #8 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\ErrorMiddleware->process(Object(GuzzleHttp\Psr7\ServerRequest), Object(Psr\Http\Server\RequestHandlerInterface@anonymous))
2024-08-19T09:18:46.986528109Z #9 /var/www/docker-aio/php/vendor/slim/slim/Slim/MiddlewareDispatcher.php(73): Psr\Http\Server\RequestHandlerInterface@anonymous->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986535471Z #10 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(209): Slim\MiddlewareDispatcher->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986541121Z #11 /var/www/docker-aio/php/vendor/slim/slim/Slim/App.php(193): Slim\App->handle(Object(GuzzleHttp\Psr7\ServerRequest))
2024-08-19T09:18:46.986545973Z #12 /var/www/docker-aio/php/public/index.php(185): Slim\App->run()
2024-08-19T09:18:46.986551204Z #13 {main}
2024-08-19T09:18:46.986560051Z Tips: To display error details in HTTP response set "displayErrorDetails" to true in the ErrorHandler constructor.

@alnitac alnitac added 0. Needs triage Pending approval or rejection. This issue is pending approval. bug Something isn't working labels Aug 19, 2024
@szaimen
Copy link
Collaborator

szaimen commented Aug 19, 2024

Hi, see #5141 (comment)

@szaimen szaimen closed this as completed Aug 19, 2024
@gbertolottiKS
Copy link

Hi.
We had the same problem:
nextcloud error
We use Nextcloud every day, for work. The last time we've used without problem was last Friday (17/08).

This morning we see the error; we tried, unsuccessfully:

  • reboot the server
  • stop and restart all the containers, using the terminal
  • stop the Apache container, enter the AIO page e stop graphically all the containers, then restart

The only thing that worked was reloading a backup (the one of Saturday morning).

I think there's something broken in a recent update…

@gbertolottiKS
Copy link

Hi, see #5141 (comment)

Sorry, I didn't see your answer when I wrote my comment. Thanks for the clarification.
So, there will be a patch to prevent the same problem?

@szaimen
Copy link
Collaborator

szaimen commented Aug 19, 2024

Yes, the patch will ne released with nextcloud/files_fulltextsearch#272

@alnitac
Copy link
Author

alnitac commented Aug 19, 2024

Restoring a backup worked for me. Thanks. 👍

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 3, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
0. Needs triage Pending approval or rejection. This issue is pending approval. bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants