gearman gives me GEARMAN_COULD_NOT_CONNECT, it is definitely running

前端 未结 4 750
甜味超标
甜味超标 2020-12-18 00:15

My dev server is Debian Squeeze and I\'m running Gearman 1.1.5 which I compiled from source along with the php pecl extension v1.1.1

If I run the reverse_client.php

4条回答
  •  借酒劲吻你
    2020-12-18 01:06

    In case if you have used something like this

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

    or

    $client->addServers();

    use something like this

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

    PS - I have used localhost IP, this can be replaced with actual host IP.

提交回复
热议问题