3

我在我的服务器上安装了 gearmand 1.1.5,并在启动服务器后尝试了安装提供的示例。它们工作得非常正确(回声示例工作,反向没有按预期工作,但没有给出任何错误)。

然后我使用 pecl 安装了 php 包装器。该版本是最后一个稳定版本(1.1.1)。显然我在 php.ini 中添加了扩展,我的 php --info|grep gearman 输出是:

gearman
gearman support => enabled
libgearman version => 1.1.5
PWD => /root/gearman-1.1.1/examples
OLDPWD => /root/gearman-1.1.1
_SERVER["PWD"] => /root/gearman-1.1.1/examples
_SERVER["OLDPWD"] => /root/gearman-1.1.1

然后我尝试了pecl包中的echo示例,worker正确启动:

[~/gearman-1.1.1/examples]# php reverse_worker.php 
Starting
Waiting for job...

相反,客户端给了我以下错误:

[~/gearman-1.1.1/examples]# php reverse_client.php 
Starting
Sending job
PHP Warning:  GearmanClient::do(): send_packet(GEARMAN_COULD_NOT_CONNECT) Failed to send server-options packet -> libgearman/connection.cc:430 in /root/gearman-1.1.1/examples/reverse_client.php on line 26
PHP Stack trace:
PHP   1. {main}() /root/gearman-1.1.1/examples/reverse_client.php:0
PHP   2. GearmanClient->do() /root/gearman-1.1.1/examples/reverse_client.php:26

Warning: GearmanClient::do(): send_packet(GEARMAN_COULD_NOT_CONNECT) Failed to send server-options packet -> libgearman/connection.cc:430 in /root/gearman-1.1.1/examples/reverse_client.php on line 26

Call Stack:
    0.0001     228408   1. {main}() /root/gearman-1.1.1/examples/reverse_client.php:0
    0.0003     229552   2. GearmanClient->do() /root/gearman-1.1.1/examples/reverse_client.php:26

RET: 26

在 gearman 守护进程的日志中,这个 php 测试没有任何活动迹象,而它记录了我之前尝试过的所有示例。

我该如何解决这个错误?谢谢。

4

2 回答 2

4

你应该总是使用addServer("127.0.0.1", 4730), not addServer(),尽管 php 文档说了什么。

于 2013-04-30T02:39:26.900 回答
0

如果您使用过类似的东西

$client->addServers('127.0.0.1', 4730);

或者

$client->addServers();

仍然没有用然后使用这样的东西

$client->addServers('127.0.0.1:4730');

PS - 我使用了 localhost IP,这可以替换为实际的主机 IP。

于 2016-04-18T11:46:02.303 回答