如何在opensuse Leap 42.3上正确安装redis
我有一个很大的问题。 我在Owncloud中是新的。 我已经安装了自己的云10.0.3(最新),但在pipe理员面板我有几个警告。 所以即时通讯尝试修复这些。 其中之一是: 应将事务性文件lockingconfiguration为使用基于内存的locking,而不是默认的基于数据库的慢速locking 所以,我读了owncloud手册> https://doc.owncloud.org/server/latest/admin_manual/configuration/server/caching_configuration.html 接下来,他们说我必须安装一个redis模块..现在我站在墙前。 也许我会写我到现在为止所做的。 但是我认为最好的方法是从开始的时候有人向我展示如何在opensuse上安装redis。 通过以下方式安装Redis: wget http://download.redis.io/releases/redis-4.0.2.tar.gz tar xzf redis-4.0.2.tar.gz cd redis-4.0.2 make make install 加上php7-redis和extension = redis.so 创build文件:/etc/redis/redis.conf supervised systemd and then dir /var/lib/redis 我有一个入口Owncloudconfiguration添加: This example config.php configuration uses Redis for the local server cache: 'memcache.local' => '\OC\Memcache\Redis', 'redis' => [ 'host' => 'localhost', 'port' => […]