Nextcloud Administration (Linux): Unterschied zwischen den Versionen
Aus MattWiki
Matt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Matt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 34: | Zeile 34: | ||
Hilfe zu einem Befehl ausgeben: | Hilfe zu einem Befehl ausgeben: | ||
occ help maintenance:mode | occ help maintenance:mode | ||
Status von Nextcloud ausgeben: | |||
occ status | |||
Ergebnis: | |||
- installed: true | |||
- version: 11.0.3.2 | |||
- versionstring: 11.0.3 | |||
- edition: | |||
=== Wartungsmodus === | === Wartungsmodus === | ||
Wartungsmodus aktivieren: | Wartungsmodus aktivieren: | ||
occ maintenance:mode --on | occ maintenance:mode --on | ||
Status des Wartungsmodus abrufen: | |||
occ maintenance:mode | |||
Mögliches Ergebnis: | |||
Nextcloud is in maintenance mode - no apps have been loaded | |||
Maintenance mode is currently enabled | |||
Wartungsmodus deaktivieren: | Wartungsmodus deaktivieren: | ||
occ maintenance:mode --off | occ maintenance:mode --off | ||
[[Kategorie:Nextcloud]] | [[Kategorie:Nextcloud]] | ||
[[Kategorie:Linux]] | [[Kategorie:Linux]] |
Version vom 25. August 2017, 20:16 Uhr
In diesem Artikel werden diverse Administrations-Tätigkeiten beschrieben.
Command-Line-Administration
Einleitung
Das Programm occ
aus der Nextcloud-Applikation ist ein PHP-Skript, und befindet sich daher im Nextcloud-Verzeichnis:
cd /var/www/html/nextcloud/
Zur Ausführung wird der PHP-Interpreter benötigt, und sollte im Kontext des Webserver-Users ausgeführt werden.
Der folgende Befehl listet alle möglichen occ-Befehle auf:
sudo -u www-data php occ
Im folgenden wird statt der o.g. Zeile die folgende Zeile verwendet:
occ
Ergebnis:
Usage: help [options] [--] [<command_name>] Arguments: command The command to execute command_name The command name [default: "help"] Options: --format=FORMAT The output format (txt, xml, json, or md) [default: "txt"] --raw To output raw command help -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question --no-warnings Skip global warnings, show command output only -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Hilfe zu einem Befehl ausgeben:
occ help maintenance:mode
Status von Nextcloud ausgeben:
occ status
Ergebnis:
- installed: true - version: 11.0.3.2 - versionstring: 11.0.3 - edition:
Wartungsmodus
Wartungsmodus aktivieren:
occ maintenance:mode --on
Status des Wartungsmodus abrufen:
occ maintenance:mode
Mögliches Ergebnis:
Nextcloud is in maintenance mode - no apps have been loaded Maintenance mode is currently enabled
Wartungsmodus deaktivieren:
occ maintenance:mode --off