Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 909 Bytes

TROUBLESHOOT.md

File metadata and controls

19 lines (16 loc) · 909 Bytes

Troubleshooting

Reverse proxy

Be aware of issues behind a Nginx reverse proxy:

Upgrade Nextcloud database

When you upgrade Nextcloud, you often need to upgrade the database schema. As the MariaDB isn't running in the same container, you will need to do a manual upgrade.

docker exec -it --user www-data addon_local_nextcloud /bin/bash
cd /share/nextcloud/html
php occ maintenance:mode --on
php occ upgrade
php occ maintenance:mode --off

See https://docs.nextcloud.com/server/latest/admin_manual/maintenance/manual_upgrade.html for more informations.

If a message about major and minor versions pops up, comment the lines (around 210) of lib/private/Updater.php to skip the version check.