LinuxServer

nextcloud

初回設定、参考サイト

Log出力設定の変更

参考サイト

ログの出力、確認

php (nextCloudのルートフォルダ)/occ log:file

ログの出力方式変更

php (nextCloudのルートフォルダ)/occ log:manage --level=info --timezone Asia/Tokyo

Install後のセキュリティ&セットアップ警告

「.soファイル」のコピー先の確認方法

OPcache

Install

sudo yum install php74-php-opcache php74-php-pecl-apcu

必要なファイルをApacheが参照しているディレクトリへコピー

  1. 必要なファイルの検索1
    find /opt -name "*opcache*"
  2. 必要なファイルの検索2
    find /etc -name "*opcache*"
  3. ファイルのコピー
    sudo cp /etc/opt/remi/php74/php.d/10-opcache.ini /etc/php.d/
    sudo cp /opt/remi/php74/root/usr/lib64/php/modules/opcache.so /usr/lib64/php/modules/

設定変更

  1. sudo vim /etc/php.d/10-opcache.ini
    zend_extension=opcache
    opcache.enable=1
    opcache.interned_strings_buffer=8
    opcache.max_accelerated_files=10000
    opcache.memory_consumption=128
    opcache.save_comments=1
    opcache.revalidate_freq = 60
    opcache.validate_timestamps = 0

確認

  1. php -v
    1. 結果例
      PHP 7.4.33 (cli) (built: Apr 10 2024 09:34:29) ( NTS )
      Copyright (c) The PHP Group
      Zend Engine v3.4.0, Copyright (c) Zend Technologies
          with Zend OPcache v7.4.33, Copyright (c), by Zend Technologies
  2. phpinfoにも「Zend OPcache」の項目として出てきます

APCu

Install

sudo yum install php74-php-pecl-apcu

必要なファイルをApacheが参照しているディレクトリへコピー

  1. 必要なファイルの検索1
    find /opt -name "*apcu*"
  2. 必要なファイルの検索2
    find /etc -name "*apcu*"
  3. ファイルのコピー
    sudo cp /etc/opt/remi/php74/php.d/40-apcu.ini /etc/php.d/
    sudo cp /opt/remi/php74/root/usr/lib64/php/modules/apcu.so /usr/lib64/php/modules/

設定変更

  1. sudo vim (nextCloudのルートフォルダ)/config/config.php
    • 「'memcache.local' => '\OC\Memcache\APCu',」を追加
        'installed' => true,                                                                                                    │
        'default_phone_region' => 'JP',                                                                                         │
        'memcache.local' => '\OC\Memcache\APCu',                                                                                │
        'memcache.distributed' => '\OC\Memcache\Redis',                                                                         │
        'memcache.locking' => '\OC\Memcache\Redis',                                                                             │
        'redis' => [                                                                                                            │
             'host' => 'localhost',                                                                                             │
             'port' => 6379,                                                                                                    │
        ],                                                                                                                      │
      );    

確認

  1. httpdを再起動
    sudo systemctl restart httpd
  2. phpinfoに「apcu」の項目として出てきます。

redis

Install

sudo yum install php74-php-pecl-redis

必要なファイルをApacheが参照しているディレクトリへコピー

  1. redis関連
    1. 必要なファイルの検索1
      find /opt -name "*redis.so*"
    2. 必要なファイルの検索2
      find /etc -name "*redis*"
    3. ファイルのコピー
      sudo cp /etc/opt/remi/php74/php.d/50-redis.ini /etc/php.d/
      sudo cp /opt/remi/php74/root/usr/lib64/php/modules/redis.so /usr/lib64/php/modules/
  2. igbinary.so
    1. 必要なファイルの検索1
      find /opt -name "*igbinary*"
    2. 必要なファイルの検索2
      find /etc -name "*igbinary*"
    3. ファイルのコピー
      sudo cp /etc/opt/remi/php74/php.d/40-igbinary.ini /etc/php.d/
      sudo cp /opt/remi/php74/root/usr/lib64/php/modules/igbinary.so /usr/lib64/php/modules/
  3. msgpack.so
    1. 必要なファイルの検索1
      find /opt -name "*msgpack*"
    2. 必要なファイルの検索2
      find /etc -name "*msgpack*"
    3. ファイルのコピー
      sudo cp /etc/opt/remi/php74/php.d/40-msgpack.ini /etc/php.d/
      sudo cp /opt/remi/php74/root/usr/lib64/php/modules/msgpack.so /usr/lib64/php/modules/

設定変更

  1. sudo vim (nextCloudのルートフォルダ)/config/config.php
    • 「'memcache.distributed' => '\OC\Memcache\Redis',」以下を追加
        'installed' => true,
        'default_phone_region' => 'JP',
        'memcache.local' => '\OC\Memcache\APCu',
        'memcache.distributed' => '\OC\Memcache\Redis',
        'memcache.locking' => '\OC\Memcache\Redis',
        'redis' => [
             'host' => 'localhost',
             'port' => 6379,
        ],
      );

確認

  1. httpdを再起動
    sudo systemctl restart httpd
  2. phpinfoに「redis」の項目として出てきます。

その他

sessionディレクトリへ権限追加

sessionディレクトリの確認

sessionディレクトリへアクセス兼を設定

sudo chown apache: -R /var/lib/php/session

パスワード・リセット

sudo -u www-data php /var/www/nextcloud/occ user:resetpassword admin

WindowsのExplorer(エクスプローラー)でマウント

エラー対処

参考サイト


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS