嗨,我无法在我的服务器上设置我的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:没有服务器可用”
首先我安装了memcached作为一个宝石
gem安装memcached
并得到错误“DalliError:没有服务器可用”
然后我安装了memcachedsudo apt-get install memcached.现在工作正常