I am running a php application(Yii) in rackspace cloud sites. I have installed a memcached server at rackspace cloud server which is running. The problem, i am not able to access the memcache. I am getting the following errors
Memcache::get() [<a href='memcache.get'>memcache.get</a>]: Server xx.xx.xxx.xxx (tcp 11211) failed with: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
(10060)
netstat -an | grep ":11211"
tcp 0 0 0.0.0.0:11211 0.0.0.0:* LISTEN
tcp 0 0 :::11211 :::* LISTEN
udp 0 0 0.0.0.0:11211 0.0.0.0:*
udp 0 0 :::11211 :::*
Please find the cache configuration at main.php
'cache'=>array(
'class'=>'system.caching.CMemCache',
'servers'=>array(
array('host'=>' xx.xx.xxx.xxx', 'port'=>11211, 'weight'=>60),
),
),
How to make it work?