私有網盤nextcloud 12的問題處理及優化
阿新 • • 發佈:2017-07-10
nextcloud
問題1:如果你在管理界面看到如下提示
No memory cache has been configured. To enhance your performance please configure a memcache if available.
答:需要我們安裝緩存了,如果你之前是按照我的部署方法部署的,只需要修改一個php文件即可,支持的緩存分為以下幾種,我們默認安裝的是第一種
APCu, APCu 4.0.6 and up required.
A local cache for systems.
Memcached
Distributed cache for multi-server Nextcloud installations.
Redis, PHP module 2.2.6 and up required.
For distributed caching.
需要安裝 php-pecl-apcu,建議按照我的部署文檔安裝,因為版本的問題。
yum install php70w-pecl-apcu -y
然後重啟nginx服務,然後修改php配置文件/nextcloud/config/config.php,增加如下配置
‘memcache.local‘ => ‘\OC\Memcache\APCu‘,
本文出自 “運維點滴記錄” 博客,請務必保留此出處http://wzlinux.blog.51cto.com/8021085/1946018
私有網盤nextcloud 12的問題處理及優化