Difference between revisions of "Talk:Nextcloud"
Unnilennium (talk | contribs) (→Apache settings / custom template: not adapted to php-fpm) Tag: Blanking |
Unnilennium (talk | contribs) (→SME9 related issues moved from page for reference: new section) |
||
Line 1: | Line 1: | ||
+ | == SME9 related issues moved from page for reference == | ||
+ | === Known issues === | ||
+ | |||
+ | ==== failure to do online upgrade from 13.0.2 ==== | ||
+ | The following extra files have been found: assets | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | cd /usr/share/nextcloud/ | ||
+ | rm -rf assets | ||
+ | yum update smeserver-nextcloud --enablerepo=smecontribs | ||
+ | signal-event nextcloud-update | ||
+ | </syntaxhighlight>then proceed to online web upgrade | ||
+ | |||
+ | ==== issue upgrading from 13.0.2 to 15.0.0 RPM ==== | ||
+ | Nextcloud is only build to upgrade from one major release to the next. If you try to install the nextcloud-15 rpm while you already have installed the nextcloud-13, you might have encounter the following issue. | ||
+ | |||
+ | '''“Updates between multiple major versions are unsupported”''' | ||
+ | |||
+ | <tt>goto usr/share/nextcloud</tt> | ||
+ | |||
+ | copy everything except <tt>/data</tt> and <tt>/config</tt> to temp folder | ||
+ | |||
+ | download intermediate version of '''nextcloud''' from <nowiki>https://nextcloud.com/changelog/</nowiki> | ||
+ | |||
+ | unzip and copy files to /usr/share/nextcloud, dont overwrite /data or /config | ||
+ | |||
+ | change ownership in /usr/share/nextcloud chown -R apache:www . | ||
+ | |||
+ | goto <nowiki>https://yoururl/nextcloud</nowiki> and run the updater | ||
+ | |||
+ | logon to nextcloud and make sure it is all working as expected | ||
+ | |||
+ | repeat above for each major update until you are one update from the latest major update. At that point you can follow the usual process. source (https://bugs.contribs.org/show_bug.cgi?id=10670#c3) | ||
+ | |||
+ | ==== Upgrading from 17.0.1.x to 17.07.x ==== | ||
+ | |||
+ | You can use the built in updater. | ||
+ | The only issue experienced was right at the end of the process with a http 500 error. I just did 'retry' and it completed. | ||
+ | |||
+ | You may need to update your database which I did as follows - note it may take a very long time with a lot of files: | ||
+ | |||
+ | OCC maintenance:mode --on | ||
+ | OCC db:convert-filecache-bigint | ||
+ | OCC maintenance:mode --off |
Revision as of 15:41, 23 March 2022
Known issues
failure to do online upgrade from 13.0.2
The following extra files have been found: assets
cd /usr/share/nextcloud/
rm -rf assets
yum update smeserver-nextcloud --enablerepo=smecontribs
signal-event nextcloud-update
then proceed to online web upgrade
issue upgrading from 13.0.2 to 15.0.0 RPM
Nextcloud is only build to upgrade from one major release to the next. If you try to install the nextcloud-15 rpm while you already have installed the nextcloud-13, you might have encounter the following issue.
“Updates between multiple major versions are unsupported”
goto usr/share/nextcloud
copy everything except /data and /config to temp folder
download intermediate version of nextcloud from https://nextcloud.com/changelog/
unzip and copy files to /usr/share/nextcloud, dont overwrite /data or /config
change ownership in /usr/share/nextcloud chown -R apache:www .
goto https://yoururl/nextcloud and run the updater
logon to nextcloud and make sure it is all working as expected
repeat above for each major update until you are one update from the latest major update. At that point you can follow the usual process. source (https://bugs.contribs.org/show_bug.cgi?id=10670#c3)
Upgrading from 17.0.1.x to 17.07.x
You can use the built in updater. The only issue experienced was right at the end of the process with a http 500 error. I just did 'retry' and it completed.
You may need to update your database which I did as follows - note it may take a very long time with a lot of files:
OCC maintenance:mode --on OCC db:convert-filecache-bigint OCC maintenance:mode --off