|
|
(11 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) |
Zeile 1: |
Zeile 1: |
| '''Nextcloud/Update''' - Update auf der Konsole durchführen | | '''Nextcloud/Update''' - Update auf der Konsole |
|
| |
|
| == Beschreibung == | | == Beschreibung == |
Zeile 37: |
Zeile 37: |
| </syntaxhighlight> | | </syntaxhighlight> |
|
| |
|
| === Fehlerbehebung ===
| |
| ==== Downgrading is not supported ====
| |
| ''Downgrading is not supported and is likely to cause unpredictable issues (from 29.0.5.1 to 29.0.4.1) ''
| |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| sudo systemctl restart php8.2-fpm.service
| |
| </syntaxhighlight>
| |
|
| |
|
| ==== APCu not available for local cache ====
| | <noinclude> |
| Nach dem Update von Nextcloud melded das “occ”-Kommando
| |
| <syntaxhighlight lang="bash" highlight="1" line> | |
| $ php occ upgrade
| |
| An unhandled exception has been thrown:
| |
| OC\HintException: [0]: Memcache \OC\Memcache\APCu not available for local cache (Is the matching PHP module installed and enabled?)
| |
| </syntaxhighlight>
| |
| | |
| ; Lösung
| |
| ; Hinzufügen von ''--define apc.enable_cli=1'' auf der Kommandozeile
| |
| | |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| sudo -u php --define apc.enable_cli=1 occ upgrade
| |
| </syntaxhighlight>
| |
| | |
| ; [[ACP]] für [[PHP]] auf der Kommandozeile generell aktivieren
| |
| Direktive '''apc.enable_cli=1''' der passenden php.ini aktivieren
| |
| | |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| sudo editor /etc/php/[PHP-Version]/cli/php.ini
| |
| apc.enable_cli=1
| |
| </syntaxhighlight>
| |
| | |
| ==== Schritt … wird derzeit ausgeführt ====
| |
| ''Schritt … wird derzeit ausgeführt. Bitte rufen Sie diesen Befehl später auf''
| |
|
| |
|
| ; Problem
| |
| Beim Versuch, Nextcloud über die Befehlszeile mit einem Befehl wie
| |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh
| |
| php updater/updater.phar
| |
| </syntaxhighlight>
| |
|
| |
| wird folgende Fehlermeldung angezeigt
| |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| „fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt“
| |
| Nextcloud Updater – Version: v20.0.0beta4-11-g68fa0d4
| |
| </syntaxhighlight>
| |
|
| |
| ; Lösung
| |
| Unabhängig davon, ob es sich bei dem Schritt, der gerade ausgeführt wird, um <code>Schritt 3</code>, <code>Schritt 5</code> oder einen anderen Schritt handelt, ist die Lösung immer dieselbe: '''Setzen Sie das Update zurück, indem Sie den Ordner <code>data/updater-occ[random-string]</code> löschen.'''
| |
|
| |
| ; Empfohlen
| |
| Wenn Sie Angst haben, Daten zu verlieren, benennen Sie das Verzeichnis einfach um
| |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh
| |
| mv data/updater-occ* ../DELETEME-updater
| |
| </syntaxhighlight>
| |
|
| |
| ; Nicht empfohlen
| |
| Sie können auch einfach das Verzeichnis löschen
| |
| <syntaxhighlight lang="bash" highlight="1" line>
| |
| fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt
| |
| rm -rf data/updater-occ*
| |
| </syntaxhighlight>
| |
|
| |
| == Konfiguration ==
| |
| === Dateien ===
| |
| <noinclude>
| |
| == Anhang == | | == Anhang == |
| === Siehe auch === | | === Siehe auch === |
| {{Special:PrefixIndex/{{BASEPAGENAME}}}} | | {{Special:PrefixIndex/{{BASEPAGENAME}}}} |
| ==== Dokumentation ====
| |
| ==== Links ==== | | ==== Links ==== |
| ===== Projekt ===== | | ===== Projekt ===== |
| ===== Weblinks ===== | | ===== Weblinks ===== |
| | # https://docs.nextcloud.com/server/latest/admin_manual/maintenance/update.html |
| # https://techoverflow.net/2022/06/17/how-to-fix-nextcloud-step-is-currently-in-process-please-call-this-command-later/ | | # https://techoverflow.net/2022/06/17/how-to-fix-nextcloud-step-is-currently-in-process-please-call-this-command-later/ |
| # https://docs.nextcloud.com/server/latest/admin_manual/maintenance/update.html
| |
|
| |
|
| [[Kategorie:Nextcloud/Konfiguration]] | | [[Kategorie:Nextcloud/Konfiguration]] |
|
| |
|
| </noinclude> | | </noinclude> |
Nextcloud/Update - Update auf der Konsole
Beschreibung
Anwendung
Updater
sudo -u web13 php8.2 --define apc.enable_cli=1 updater/updater.phar
occ upgrade
sudo -u web13 php8.2 --define apc.enable_cli=1 occ upgrade
Maintenance-Mode
- Maintenance-Mode abschalten
sudo -u web13 php8.2 --define apc.enable_cli=1 occ maintenance:mode --off
PHP-FPM
- PHP-FPM neu starten
sudo systemctl restart php8.2-fpm.service
Anhang
Siehe auch
Links
Projekt
Weblinks
- https://docs.nextcloud.com/server/latest/admin_manual/maintenance/update.html
- https://techoverflow.net/2022/06/17/how-to-fix-nextcloud-step-is-currently-in-process-please-call-this-command-later/