Nextcloud/Update: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung |
|||
(78 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
'''Nextcloud/Update''' - Update auf der Konsole | |||
== Beschreibung == | |||
{| class="wikitable options col1center big" | |||
! Schritt !! Beschreibung | |||
|- | |||
| 1 || [[#Updater|Updater starten]] | |||
|- | |||
| 2 || [[#occ upgrade|occ upgrade]] | |||
|- | |||
| 3 || [[#Maintenance-Mode|Maintenance-Mode abschalten]] | |||
|- | |||
| 4 || [[#PHP-FPM|php8.2-fpm.service]] neu starten | |||
|} | |||
== Anwendung == | |||
=== Updater === | |||
<syntaxhighlight lang="bash" highlight="1" line> | |||
sudo -u web13 php8.2 --define apc.enable_cli=1 updater/updater.phar | |||
</syntaxhighlight> | |||
=== occ upgrade === | |||
<syntaxhighlight lang="bash" highlight="1,2,3" line> | |||
sudo -u web13 php8.2 --define apc.enable_cli=1 occ upgrade | |||
</syntaxhighlight> | |||
=== Maintenance-Mode === | |||
; Maintenance-Mode abschalten | |||
<syntaxhighlight lang="bash" highlight="1,2,3" line> | |||
sudo -u web13 php8.2 --define apc.enable_cli=1 occ maintenance:mode --off | |||
</syntaxhighlight> | |||
=== PHP-FPM === | |||
; PHP-FPM neu starten | |||
<syntaxhighlight lang="bash" highlight="1,2,3" line> | |||
sudo systemctl restart php8.2-fpm.service | |||
</syntaxhighlight> | |||
<noinclude> | |||
== Anhang == | |||
=== Siehe auch === | |||
{{Special:PrefixIndex/{{BASEPAGENAME}}}} | |||
==== Links ==== | |||
===== Projekt ===== | |||
===== Weblinks ===== | |||
# https://docs.nextcloud.com/server/latest/admin_manual/maintenance/update.html | # 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/ | |||
[[Kategorie:Nextcloud/Konfiguration]] | |||
</noinclude> |
Aktuelle Version vom 26. Oktober 2024, 01:10 Uhr
Nextcloud/Update - Update auf der Konsole
Beschreibung
Schritt | Beschreibung |
---|---|
1 | Updater starten |
2 | occ upgrade |
3 | Maintenance-Mode abschalten |
4 | php8.2-fpm.service neu starten |
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/