无法连接到内存缓存主机!


16

我对memcached完全陌生!我在主机A(Ip 192.168.1.102)中成功安装并使用此命令启动了memcached

memcached -u memcached -d -m 30 -l 127.0.0.1 -p 11211

我还将这些条目添加到iptables中

-A INPUT -m state --state NEW -m tcp -p tcp --dport 11211 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 11211 -j ACCEPT

重新启动了iptables服务,并监听了端口11211

telnet也可以!

telnet localhost 11211

尝试127.0.0.1 ...已连接到本地主机。转义字符为'^]'。

但是我使用此脚本memcached_test.php从主机B(IP 192.168.1.103)连接到该主机A。

<?php
$memcache = new Memcache;
$memcache->connect('192.168.1.102', 11211) or die ("Could not connect");

$version = $memcache->getVersion();
echo "Server's version: ".$version."<br/>\n";

$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$tmp_object->int_attr = 123;

$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
echo "Store data in the cache (data will expire in 10 seconds)<br/>\n";

$get_result = $memcache->get('key');
echo "Data from the cache:<br/>\n";

var_dump($get_result);
?>

当我在主机B(192.168.1.103)的服务器中浏览此脚本时。我收到此错误

警告:Memcache :: connect()[memcache.connect]:无法连接到192.168.1.102:11211,第3行的/var/www/memcache_test.php中的连接被拒绝(111)

请告诉我如何解决这个问题!

Answers:


15
# memcached -u memcached -d -m 30 -l 127.0.0.1 -p 11211

您会注意到-l 127.0.0.1命令行中有“ ”。这告诉 memcached只在lo接口上监听。如果要从远程计算机访问它,则需要删除命令行的这一部分。


非常感谢...我将127.0.0.1替换为192.168.1.102,现在可以正常使用了!
billyduc
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.