コマンドラインでメンテモードON/OFF切り替え
メンテモードをONにする
$ /opt/php-7.3.8/bin/php occ maintenance:mode --on
The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php Maintenance mode enabled Please also consider to stop the web server on all ownCloud instances
メンテモードをOFFにする
$ /opt/php-7.3.8/bin/php occ maintenance:mode --off
The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php ownCloud is in maintenance mode - no app have been loaded Maintenance mode disabled
設定ファイルでメンテモードON/OFF切り替え
config/config.php の ‘maintenance’ の値を変更して切り替えます。
メンテモードをONにする
'maintenance' => true,
メンテモードをOFFにする
'maintenance' => false,
メンテ中のフロントの表示
正常にメンテモードに切り替わっている場合は以下の表示に切り替わります。
動作環境情報
エックスサーバー(x10) PHP 7.3.14 MySQL 5.7 ownCloud 10.3.2 (stable)
コメント