Nextcloud/Update: Unterschied zwischen den Versionen
Zeile 5: | Zeile 5: | ||
== How to fix Nextcloud == | == How to fix Nextcloud == | ||
==== Step … is currently in process. Please call this command later. ==== | ==== Step … is currently in process. Please call this command later. ==== | ||
===== Problem ===== | |||
===== Problem | |||
While trying to update Nextcloud using the command line (e.g. SSH) using a command like | While trying to update Nextcloud using the command line (e.g. SSH) using a command like | ||
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh | |||
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh | php updater/updater.phar | ||
php updater/updater.phar | |||
you see the following error message: | you see the following error message: | ||
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt | |||
Nextcloud Updater - version: v20.0.0beta4-11-g68fa0d4 | |||
Step 5 is currently in process. Please call this command later. | |||
===== Solution ===== | |||
===== Solution | |||
No matter if the step that appears to be currently in progress is <code>Step 3</code>, <code>Step 5</code> or any other step, the solution is always the same: '''Reset the update by deleting the <code>data/updater-occ[random-string]</code> folder.''' | No matter if the step that appears to be currently in progress is <code>Step 3</code>, <code>Step 5</code> or any other step, the solution is always the same: '''Reset the update by deleting the <code>data/updater-occ[random-string]</code> folder.''' | ||
; Recommended | |||
If you are paranoid about losing data, just rename the directory: | |||
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh | fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh | ||
mv data/updater-occ* ../DELETEME-updater | |||
mv data/updater-occ* ../DELETEME-updater | |||
rm -rf data/updater-occ* | ; Not recommended | ||
You can also just delete the directory | |||
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt | |||
rm -rf data/updater-occ* | |||
# 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/ | ||
[[Kategorie:Nextcloud/Verwaltung]] | [[Kategorie:Nextcloud/Verwaltung]] |
Version vom 28. Juli 2023, 10:14 Uhr
# sudo -u www-run php --define apc.enable_cli=1 updater/updater.phar
How to fix Nextcloud
Step … is currently in process. Please call this command later.
Problem
While trying to update Nextcloud using the command line (e.g. SSH) using a command like
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh php updater/updater.phar
you see the following error message:
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt Nextcloud Updater - version: v20.0.0beta4-11-g68fa0d4 Step 5 is currently in process. Please call this command later.
Solution
No matter if the step that appears to be currently in progress is Step 3
, Step 5
or any other step, the solution is always the same: Reset the update by deleting the data/updater-occ[random-string]
folder.
- Recommended
If you are paranoid about losing data, just rename the directory:
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.sh mv data/updater-occ* ../DELETEME-updater
- Not recommended
You can also just delete the directory
fix-nextcloud-step-is-currentlyprocess-please-call-this-command-later.txt rm -rf data/updater-occ*