Stuck in Upgrade Loop 27.1.2

Nextcloud version : 27.1.2
Operating system and version (eg, Ubuntu 20.04): Debian GNU/Linux 11 (bullseye)
Apache or nginx version (eg, Apache 2.4.25): Apache/2.4.56
PHP version (eg, 7.4): 8.1

The issue you are facing:

I was updating from 27.1.1 to 27.1.2 and got stuck in a loop. I was using the web interface and things seemed to progress smoothly and the update seemed to be completing but then when it refreshed and should have come out of upgrade/maintenance mode it then presented the update screen saying " Nextcloud will be updated to version 27.1.2" and offered a “START UPDATE” button again. It will repeat this forever. I have tried performing the update from the command line with no success.

Is this the first time you’ve seen this error? (Y/N): Y

Steps to replicate it:

  1. Attempt an upgrade

Here is what I get when I check status via occ :

sudo -u www-data php occ status

Nextcloud or one of the apps require upgrade - only a limited number of commands are available                                                                                                                                               You may use your browser or the occ upgrade command to do the upgrade.
installed: true
version: 27.1.2.1
versionstring: 27.1.2
edition:
maintenance: false
needsDbUpgrade: true
productname: Nextcloud
extendedSupport: false   

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
'instanceid' => '',
'passwordsalt' => '',
'secret' => '',
'trusted_domains' =>
array (
0 => '',
1 => '',
2 => '',
3 => '',
),
'datadirectory' => '/ncdata',
'dbtype' => 'mysql',
'version' => '27.1.2.1',
'overwrite.cli.url' => '',
'dbname' => '',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '',
'dbpassword' => '',
'installed' => true,
'htaccess.RewriteBase' => '/',
'default_phone_region' => 'US',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis-server.sock',
'port' => '0',
),
'maintenance' => false,
'app.mail.verify-tls-peer' => false,
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_sendmailmode' => 'smtp',
'mail_domain' => '.com',
'mail_from_address' => '',
'mail_smtpauthtype' => 'LOGIN',
'theme' => '',
'allow_local_remote_servers' => true,
'loglevel' => 1,
'app_install_overwrite' =>
array (
0 => 'wopi',
),
'mail_smtpport' => '1025',
'memories.exiftool' => '/var/www/html/nextcloud/apps/memories/exiftool-bin/exiftool-amd64-glibc',
'memories.vod.path' => '/var/www/html/nextcloud/apps/memories/exiftool-bin/go-vod-amd64',
'memories.vod.ffmpeg' => '/usr/bin/ffmpeg',
'memories.vod.ffprobe' => '/usr/bin/ffprobe',
'updater.secret' => '',
);

Have you tried to use occ upgrade from command line?
Have you updated columns and primary keys by occ command?

Yes I have tried both.
It completes the upgrade as though everything went as planned but then I end up back at the “Start Update” if I tried to load the site.
If I run any occ command I see this banner "Nextcloud or one of the apps require upgrade - only a limited number of commands are available You may use your browser or the occ upgrade command to do the upgrade "

I have tried to change the version in config/config.php and that seems to have had an effect in the sense that when I run occ status I get this now.

sudo -u www-data php occ status
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
- installed: true
- version: 27.1.2.1
- versionstring: 27.1.2
- edition:
- maintenance: false
- needsDbUpgrade: true
- productname: Nextcloud
- extendedSupport: false

How is “needsDbUpgrade” set or determined? Would this be enough to put my system in this state?

Thanks in advance for any help/suggestions!

What do you get after this command

sudo -u www-data php occ config:system:get version

so as following

sudo -u www-data php occ maintenance:repair
?

for very good reason i am using the command line updater.phar for updating my nextcloud for a long time now.

I will give you a link to a (in my opinion) very very good tutorial and some commands that could rescue your NC installation.

I had same situation years ago. My solution was to copy over all NC installation files from the tar.gz file that has to be downloaded from nextcloud.com. After backing up my NC folder i copied over the new files in place and ran the occ upgrade command again.
If that doesn’t help, you may (backup before is obligatory!!) copy the files of an older NC version (downloaded tar.gz file!) to your NC root and then start the command for the updater.phar

→ read this: Upgrade via built-in updater — Nextcloud latest Administration Manual latest documentation

sudo -u www-data php occ config:system:get version
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
27.1.1.0

I ran the other command you suggested and it “did all the things” with no issues. I checked the version again using the command you suggested and got the same result.

OK your Updater is reporting a still open “occ upgrade” because your NC version wasn’t properly changed by the (WebUI) Updater in my opinion.

What you do is your your choice! I would try the following

  1. make a backup of the whole NC folder (root dir) maybe /var/www/nextcloud/…
  2. download the latest files for NC 27.1.1 Server as tar-gz
  3. unpack all the content of the packed files to maybe /tmp/nextcloud
  4. copy over all folders and files from the unpacked folder /tmp/nextcloud to your root dir maybe /var/www/nextcloud
  5. DO NOT OPEN ANY BROWSER → WebUI of your Nextcloud!
  6. check that your www user (maybe www-data) has full read write access to your files and folder in NC root dir (e.g. /var/www/nextcloud) and that the old config in …/nextcloud/config/config.php still resist!
  7. run the following command
    sudo -u www-data php /var/www/nextcloud/updater/updater.phar
  8. follow the instructions on the terminal screen
  9. after successful upgrade (occ upgrade) do further
    occ db:… and (add missing columns indices etc.)
  10. be sure that maintenance:mode is set to off (occ maintenance:mode --off )
  11. make a reboot of the NC Server (not just the services restart!)
  12. after reboot log into terminal again and check the integrity of the core by occ command
    if everything is ok now, then go back to browser and open your NC URL

Keep my fingers crossed this work :+1:

I will try this today. Thanks for they help so far!

Still having the same issue.

Still stuck in the update loop.
Any time I run the occ command I get this header :

Nextcloud or one of the apps require upgrade - only a limited number of commands are available                                                                                                                                               You may use your browser or the occ upgrade command to do the upgrade
Nextcloud 27.1.2 
sudo -u www-data php occ status
Nextcloud or one of the apps require upgrade - only a limited number of commands are available                                                                                                                                               You may use your browser or the occ upgrade command to do the upgrade 
- installed: true
- version: 27.1.2.1
- versionstring: 27.1.2
- edition:
- maintenance: false
- needsDbUpgrade: true
- productname: Nextcloud
- extendedSupport: false     

What triggers that header?
What triggers the update page?

OK so an update. I copied he contents of 27.1.1 to my nextcloud directory and… well it works. If I try to run the update/upgrade I get stuck in the loop. I think I am going to hold tight here for the moment to see if things go smoothly.

Thanks for all of the help so far! I may just wait for the next update before trying again.

After copying the raw files of the 27.1.1 tar.gz to the nextcloud root dir do you run occ upgrade directly or do you at first run the updater.phar command?

When the updater.phar recognize the files version that is installed and offers to download the new (27.1.2 at the moment) version a download → files overwrite → maintenance … should be the result.

When the script ask to “occ upgrade” then this happens usually after the download and files exchange process…

Do you have any apps that are not yet compatible with the 27.1.2 occ app:list
looking for enabled / disabled apps that might be disabled during update / upgrade process?

– This is entirely possible. I will dig through those and remove what is not compatible and try again later.

Thanks for the help!!

I have the same problem. Since last year I try to update my 27.1.3 installation.
The problem occured first with the update to 27.1.4 and I had to go back to 27.1.3. Yesterday and to day I have tried to update to 27.1.8 and 27.1.9 with the web bases updater and the updater.phar. It always ends up in the mentioned upgrade loop with tjhe status of the database as needs upgrade:

root@tho-nextcl:/home/DATA/web/nextcloud# sudo -u www-data php ./occ status
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade

  • installed: true
  • version: 27.1.9.1
  • versionstring: 27.1.9
  • edition:
  • maintenance: false
  • needsDbUpgrade: true
  • productname: Nextcloud
  • extendedSupport: false

So I am stuck here.

Best
Torsten

@tho99 Please post, to start, the last couple screens of your data/updater.log. Also, clarify whether you let the updater.phar run occ upgrade for you (or if you at least tried to do so manually after).

The issue that I was having was due to nextcloud picking up old config files that I had. When I would make a change to my config file I would copy it and rename it something like config.php_ORIGINAL but never move it. During the update it would see these files and pick up an old version. I moved all of these files to an alternate location and the system worked.

So essentially my config folder had multiple files that looked like this :
config/config.php
config/config.php_BACKUP
config/config.php_TEST
config/config.php_TEST2

I moved or deleted all other config.php* and the loop was broken as the system only saw config/config.php

@rezhalo3:

Thanks for hint. I do it a little bit different, but I also have old configs laying around:

config.php
config.sample.php
tho.config.php

I will give this a try immediately.

With the glob loading used for multiple config.php support , anything ending with *.config.php gets loaded (like the above).

@jtr:

I did the following sequence:

cd
sudo -u www-data php /home/DATA/web/nextcloud/updater/updater.phar

cd /home/DATA/web/nextcloud
sudo -u www-data php ./occ upgrade

(had to replace tje http in the urls)
updater.log:

2024-04-25T10:36:22+0000 uCLW7zNa9O [info] updater cli is executed
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] currentStep()
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] current version: 27.1.3 build time: 2023-10-26T17:25:16+00:00 565dc36226d08d071c30d8ad4fd54126dfa4be79
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] getUpdateServerResponse()
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] updaterServer: XXXXs://updates.nextcloud.com/updater_server/
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] releaseChannel: stable
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] internal version: 27.1.3.2
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] updateURL: XXXXs://updates.nextcloud.com/updater_server/?version=27x1x3x2xxxstablexx2023-10-26T17%3A25%3A16%2B00%3A00+565dc36226d08d071c30d8ad4fd54126dfa4be79x8x2x10
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] getUpdateServerResponse response: Array
(
[version] => 27.1.9.1
[versionstring] => Nextcloud 27.1.9
[url] => XXXXs://download.nextcloud.com/server/releases/nextcloud-27.1.9.zip
[web] => XXXXs://docs.nextcloud.com/server/27/admin_manual/maintenance/upgrade.html
[changes] => XXXXs://updates.nextcloud.com/changelog_server/?version=27.1.9
[autoupdater] => 1
[eol] => 0
[signature] => MofbMy9BK9Tib2LaSkg31dKRjRK6B+k8CTMh9xhUyQoC+yBdCKmchvw0ApohBc9h
4R0Ejxi57AEpMWrXwotSpQ5R41puIn6pSulN5DDhdj/AFvUUeoyI0nVKXCBCmqcO
zo7UPX07GqKIqQ8uTEuy3Q7ayREkVrFvbWUCDHgjGFV2xVwR4nqppmzlZKmC0SYu
KIFKVB0s5pFLvC2J/TcpqKGS86iQIUAaNkER3hiAf4iO+GxatM4rEtveD/Bv9Gdy
is8mB1xOT+wd3WCdwHoIu14IlWcy1CNgWKe+sjoz4VvR579TG3I4mk9VxSxLu8rO
3No9jhWhcURoGeKTWQJ5pw==
)

2024-04-25T10:36:22+0000 uCLW7zNa9O [info] checkForUpdate() Array
(
[version] => 27.1.9.1
[versionstring] => Nextcloud 27.1.9
[url] => XXXXs://download.nextcloud.com/server/releases/nextcloud-27.1.9.zip
[web] => XXXXs://docs.nextcloud.com/server/27/admin_manual/maintenance/upgrade.html
[changes] => XXXXs://updates.nextcloud.com/changelog_server/?version=27.1.9
[autoupdater] => 1
[eol] => 0
[signature] => MofbMy9BK9Tib2LaSkg31dKRjRK6B+k8CTMh9xhUyQoC+yBdCKmchvw0ApohBc9h
4R0Ejxi57AEpMWrXwotSpQ5R41puIn6pSulN5DDhdj/AFvUUeoyI0nVKXCBCmqcO
zo7UPX07GqKIqQ8uTEuy3Q7ayREkVrFvbWUCDHgjGFV2xVwR4nqppmzlZKmC0SYu
KIFKVB0s5pFLvC2J/TcpqKGS86iQIUAaNkER3hiAf4iO+GxatM4rEtveD/Bv9Gdy
is8mB1xOT+wd3WCdwHoIu14IlWcy1CNgWKe+sjoz4VvR579TG3I4mk9VxSxLu8rO
3No9jhWhcURoGeKTWQJ5pw==
)

2024-04-25T10:36:22+0000 uCLW7zNa9O [info] getChangelogURL()
2024-04-25T10:36:22+0000 uCLW7zNa9O [info] end of checkForUpdate() Update to Nextcloud 27.1.9 available. (channel: “stable”)
Following file will be downloaded automatically: XXXXs://download.nextcloud.com/server/releases/nextcloud-27.1.9.zip
Open changelog :arrow_upper_right:
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] updater started
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] executeStep request for step “1”
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] startStep(“1”)
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] checkForExpectedFilesAndFolders()
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] end of checkForExpectedFilesAndFolders()
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] endStep(“1”)
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] executeStep request for step “2”
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] startStep(“2”)
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] checkWritePermissions()
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] end of checkWritePermissions()
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] endStep(“2”)
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] executeStep request for step “3”
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] startStep(“3”)
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] createBackup()
2024-04-25T10:36:25+0000 uCLW7zNa9O [info] backup folder location: /home/DATA/web/nextcloud/data/updater-oceu2ddyek5s/backups/nextcloud-27.1.3.2-1714041385/
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] end of createBackup()
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] endStep(“3”)
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] executeStep request for step “4”
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] startStep(“4”)
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] downloadUpdate()
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] getUpdateServerResponse()
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] updaterServer: XXXXs://updates.nextcloud.com/updater_server/
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] releaseChannel: stable
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] internal version: 27.1.3.2
2024-04-25T10:44:18+0000 uCLW7zNa9O [info] updateURL: XXXXs://updates.nextcloud.com/updater_server/?version=27x1x3x2xxxstablexx2023-10-26T17%3A25%3A16%2B00%3A00+565dc36226d08d071c30d8ad4fd54126dfa4be79x8x2x10
2024-04-25T10:44:19+0000 uCLW7zNa9O [info] getUpdateServerResponse response: Array
(
[version] => 27.1.9.1
[versionstring] => Nextcloud 27.1.9
[url] => XXXXs://download.nextcloud.com/server/releases/nextcloud-27.1.9.zip
[web] => XXXXs://docs.nextcloud.com/server/27/admin_manual/maintenance/upgrade.html
[changes] => XXXXs://updates.nextcloud.com/changelog_server/?version=27.1.9
[autoupdater] => 1
[eol] => 0
[signature] => MofbMy9BK9Tib2LaSkg31dKRjRK6B+k8CTMh9xhUyQoC+yBdCKmchvw0ApohBc9h
4R0Ejxi57AEpMWrXwotSpQ5R41puIn6pSulN5DDhdj/AFvUUeoyI0nVKXCBCmqcO
zo7UPX07GqKIqQ8uTEuy3Q7ayREkVrFvbWUCDHgjGFV2xVwR4nqppmzlZKmC0SYu
KIFKVB0s5pFLvC2J/TcpqKGS86iQIUAaNkER3hiAf4iO+GxatM4rEtveD/Bv9Gdy
is8mB1xOT+wd3WCdwHoIu14IlWcy1CNgWKe+sjoz4VvR579TG3I4mk9VxSxLu8rO
3No9jhWhcURoGeKTWQJ5pw==
)

2024-04-25T10:44:19+0000 uCLW7zNa9O [info] storage location exists
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] end of downloadUpdate()
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] endStep(“4”)
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] executeStep request for step “5”
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] startStep(“5”)
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] verifyIntegrity()
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] getUpdateServerResponse()
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] updaterServer: XXXXs://updates.nextcloud.com/updater_server/
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] releaseChannel: stable
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] internal version: 27.1.3.2
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] updateURL: XXXXs://updates.nextcloud.com/updater_server/?version=27x1x3x2xxxstablexx2023-10-26T17%3A25%3A16%2B00%3A00+565dc36226d08d071c30d8ad4fd54126dfa4be79x8x2x10
2024-04-25T10:44:51+0000 uCLW7zNa9O [info] getUpdateServerResponse response: Array
(
[version] => 27.1.9.1
[versionstring] => Nextcloud 27.1.9
[url] => XXXXs://download.nextcloud.com/server/releases/nextcloud-27.1.9.zip
[web] => XXXXs://docs.nextcloud.com/server/27/admin_manual/maintenance/upgrade.html
[changes] => XXXXs://updates.nextcloud.com/changelog_server/?version=27.1.9
[autoupdater] => 1
[eol] => 0
[signature] => MofbMy9BK9Tib2LaSkg31dKRjRK6B+k8CTMh9xhUyQoC+yBdCKmchvw0ApohBc9h
4R0Ejxi57AEpMWrXwotSpQ5R41puIn6pSulN5DDhdj/AFvUUeoyI0nVKXCBCmqcO
zo7UPX07GqKIqQ8uTEuy3Q7ayREkVrFvbWUCDHgjGFV2xVwR4nqppmzlZKmC0SYu
KIFKVB0s5pFLvC2J/TcpqKGS86iQIUAaNkER3hiAf4iO+GxatM4rEtveD/Bv9Gdy
is8mB1xOT+wd3WCdwHoIu14IlWcy1CNgWKe+sjoz4VvR579TG3I4mk9VxSxLu8rO
3No9jhWhcURoGeKTWQJ5pw==
)

2024-04-25T10:44:51+0000 uCLW7zNa9O [info] storage location: /home/DATA/web/nextcloud/data/updater-oceu2ddyek5s/downloads/
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] end of verifyIntegrity()
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] endStep(“5”)
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] executeStep request for step “6”
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] startStep(“6”)
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] extractDownload()
2024-04-25T10:45:14+0000 uCLW7zNa9O [info] storage location: /home/DATA/web/nextcloud/data/updater-oceu2ddyek5s/downloads/
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] end of extractDownload()
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] endStep(“6”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] executeStep request for step “7”
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] startStep(“7”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] setMaintenanceMode(“true”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] configFileName /home/NEXTCL/NC10/web/nextcloud/updater/…/config/config.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] end of setMaintenanceMode()
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] endStep(“7”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] executeStep request for step “8”
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] startStep(“8”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replaceEntryPoints()
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace index.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace status.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace remote.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace public.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace ocs/v1.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] replace ocs/v2.php
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] end of replaceEntryPoints()
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] endStep(“8”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] executeStep request for step “9”
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] startStep(“9”)
2024-04-25T10:48:39+0000 uCLW7zNa9O [info] deleteOldFiles()
2024-04-25T10:49:07+0000 uCLW7zNa9O [info] config sample exists
2024-04-25T10:49:07+0000 uCLW7zNa9O [info] themes README exists
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] end of deleteOldFiles()
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] endStep(“9”)
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] executeStep request for step “10”
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] startStep(“10”)
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] moveNewVersionInPlace()
2024-04-25T10:51:03+0000 uCLW7zNa9O [info] storage location: /home/DATA/web/nextcloud/data/updater-oceu2ddyek5s/downloads/nextcloud/
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] end of moveNewVersionInPlace()
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] endStep(“10”)
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] executeStep request for step “12”
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] startStep(“12”)
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] finalize()
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] storage location: /home/DATA/web/nextcloud/data/updater-oceu2ddyek5s/downloads/nextcloud/
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] call opcache_reset()
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] end of finalize()
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] endStep(“12”)
2024-04-25T10:52:37+0000 uCLW7zNa9O [info] update of code successful.
2024-04-25T10:52:42+0000 uCLW7zNa9O [info] updater finished

@rezhalo3:

Moving the saved config files elsewhere did the trick!
Problem also solved for me.
Thanks very much for help.

Best
Torsten

Glad I could help!