ruby-on-rails – Rails Dalli memcache gem:DalliError:没有可用的服务器

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails Dalli memcache gem:DalliError:没有可用的服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我无法在我的服务器上设置我的Rails项目,因为apache不断抱怨

DalliError:没有服务器可用.

我在我的ubuntu机器上安装了memcached,但它仍然不起作用.我的rails项目也有config.cache_store =:dalli_store,’localhost:11211′,{:namespace => “production”}在environments / production.rb中.我该如何调试?

我的日志显示在每个请求之前:

localhost:11211 Failed (count: 6)
DalliError: No server available

telnet到11211:

root@s2:/usr/local/www/production/current/log# telnet localhost 11211
    Trying 127.0.1.1...
    telnet: Unable to connect to remote host: Connection refused

解决方法

我有同样的问题.
首先我安装了memcached作为一个宝石
gem安装memcached
并得到错误“DalliError:没有服务器可用”

然后我安装了memcachedsudo apt-get install memcached.现在工作正常

猜你在找的Memcache相关文章