Hey Leute, vielleicht kann mir wer von euch ja weiterhelfen, ... ich verzweifel gerade an meinem Nextcloud Setting.
Redis läuft in der neusten Version, compiliert aus source:
root@xf0:~# ps ax | grep redis
3336 pts/0 S+ 0:00 grep redis
22598 pts/0 T 0:00 /bin/sh /etc/init.d/redis_6379 stop
29366 ? Ssl 0:03 /usr/local/bin/redis-server 127.0.0.1:6379
bzw.
root@xf0:~# redis-cli
127.0.0.1:6379> ping
(error) NOAUTH Authentication required.
127.0.0.1:6379>
APCu läuft ebenfalls, wobei es anscheinend egal ist, ob aus dem Source compiliert oder per pecl installiert, ...
php=7,2
echo "extension = apcu.so" | tee -a /etc/php/$php/mods-available/apcu.ini
ln -s /etc/php/$php/mods-available/apcu.ini /etc/php/$php/fpm/conf.d/30-apcu.ini
ln -s /etc/php/$php/mods-available/apcu.ini /etc/php/$php/cli/conf.d/30-apcu.ini
ln -s /etc/php/$php/mods-available/apcu_bc.ini /etc/php/$php/fpm/conf.d/30apcu_bc.ini
ln -s /etc/php/$php/mods-available/apcu_bc.ini /etc/php/$php/fpm/conf.d/30apcu_bc.ini
service php$php-fpm restart
Nextclud config schaut so aus:
<?php
$CONFIG = array (
'instanceid' => '*****',
'passwordsalt' => '****',
'secret' => '****',
'trusted_domains' =>
array (
0 => 'cloud.xf0.de',
),
'datadirectory' => '/var/www/xf0/nextcloud/data',
'overwrite.cli.url' => 'https://cloud.xf0.de',
'dbtype' => 'mysql',
'version' => '13.0.1.1',
'dbname' => 'xf0_cloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '*****',
'dbpassword' => '****',
'installed' => true,
'log_type' => 'file',
'logtimezone' => 'Europe/Berlin',
'logfile' => '/var/log/nextcloud.log',
'loglevel' => 2,
'auth.bruteforce.protection.enabled' => 'false',
'memcache.locking' => '\OC\Memcache\Redis',
'memcache.local' => '\OCMemcache\APCu',
'redis' => array(
'host' => '/tmp/redis.sock',
'port' => 6379,
'dbindex' => 0,
'password' => '****',
'timeout' => 1.5,
),
);
Alles anzeigen
port steht noch mit drin, obwohl ich nen socket nutze, aber auch über localhost und port 6379 ... gleicher Fehler
Ich hab folgende Settings probiert:
APCU und Redis (s.o.) = Internal Error
Nur Redis als memcache locking = klappt
Nur APCu als memcahce locking = klappt
Nur Redis fürs local und locking = fail
NUr APCu fürs local und locking = fail
Wenn wer irgend einen Tipp für mich hat, wäre ich sehr dankbar, ... denn mir gehen die Ideen aus