php RabbitMQ收到消息,但它无处可去

kqlmhetl  于 2023-10-15  发布在  PHP
关注(0)|答案(2)|浏览(94)

我在Windows 10上的PuPHPet生成的虚拟机(Ubuntu 16.04 x64)上安装了RabbitMQ。
设置完成后,我使用rabbitmqctl配置了一个新用户:

# rabbitmqctl add_user root root
# rabbitmqctl set_permissions -p / root ".*" ".*" ".*"
# rabbitmqctl set_user_tags root administrator

PHP & RabbitMQ Tutorial之后,我设置了一个发送者和接收者脚本。
发送者脚本如下:

<?php
require_once 'vendor/autoload.php';

use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Message\AMQPMessage;

$connection = new AMQPStreamConnection('localhost', 5672, 'root', 'root');
$channel = $connection->channel();
$channel->queue_declare('my_queue', false, false, false, false);

$msg = new AMQPMessage('Hello World!');
$channel->basic_publish($msg, '', 'hello');

echo "Sent 'Hello World!'\n";

$channel->close();
$connection->close();

接收器脚本如下:

<?php
require_once __DIR__ . '/vendor/autoload.php';
use PhpAmqpLib\Connection\AMQPStreamConnection;
$connection = new AMQPStreamConnection('localhost', 5672, 'root', 'root');
$channel = $connection->channel();
$channel->queue_declare('my_queue', false, false, false, false);
echo ' [*] Waiting for messages. To exit press CTRL+C', "\n";
$callback = function($msg) {
    echo " [x] Received ", $msg->body, "\n";
};
$channel->basic_consume('my_queue', '', false, true, false, false, $callback);
while(count($channel->callbacks)) {
    $channel->wait();
}
$channel->close();
$connection->close();
?>

我打开了一个接收者脚本的屏幕,并执行了几次发送者脚本:

$ php sender.php
Sent 'Hello World!'

发送者脚本没有遇到任何错误(我能够验证队列是在rabbit中声明的),但是接收者没有输出它已经接收/消费了任何消息。
此外,使用管理员管理器插件进行快速检查显示队列根本没有消息:

$ curl -i -u root:root http://localhost:15672/api/queues
...
{  
    "messages_details":{  
        "rate":0.0
    },
    "messages":0,
    "messages_unacknowledged_details":{  
        "rate":0.0
    },
    "messages_unacknowledged":0,
    "messages_ready_details":{  
        "rate":0.0
    },
    "messages_ready":0,
    "reductions_details":{  
        "rate":0.0
    },
    "reductions":9294,
    "node":"rabbit@leon",
    "arguments":{  

    },
    "exclusive":false,
    "auto_delete":false,
    "durable":false,
    "vhost":"/",
    "name":"my_queue",
    "message_bytes_paged_out":0,
    "messages_paged_out":0,
    "backing_queue_status":{  
        "avg_ack_egress_rate":0.0,
        "avg_ack_ingress_rate":0.0,
        "avg_egress_rate":0.0,
        "avg_ingress_rate":0.0,
        "delta":[  
            "delta",
            "undefined",
            0,
            0,
            "undefined"
        ],
        "len":0,
        "mode":"default",
        "next_seq_id":0,
        "q1":0,
        "q2":0,
        "q3":0,
        "q4":0,
        "target_ram_count":"infinity"
    },
    "head_message_timestamp":null,
    "message_bytes_persistent":0,
    "message_bytes_ram":0,
    "message_bytes_unacknowledged":0,
    "message_bytes_ready":0,
    "message_bytes":0,
    "messages_persistent":0,
    "messages_unacknowledged_ram":0,
    "messages_ready_ram":0,
    "messages_ram":0,
    "garbage_collection":{  
        "minor_gcs":12,
        "fullsweep_after":65535,
        "min_heap_size":233,
        "min_bin_vheap_size":46422,
        "max_heap_size":0
    },
    "state":"running",
    "recoverable_slaves":null,
    "consumers":0,
    "exclusive_consumer_tag":null,
    "effective_policy_definition":[  

    ],
    "operator_policy":null,
    "policy":null,
    "consumer_utilisation":null,
    "idle_since":"2018-01-28 15:21:22",
    "memory":9640
},
...

它看起来像是接受了消息,但立即被丢弃,而不是记录。说到日志兔子日志里也没什么可疑的很多这样的东西:

2018-01-28 15:47:43.654 [info] <0.1417.0> accepting AMQP connection <0.1417.0> ([::1]:49058 -> [::1]:5672)
2018-01-28 15:47:43.696 [info] <0.1417.0> connection <0.1417.0> ([::1]:49058 -> [::1]:5672): user 'root' authenticated and granted access to vhost '/'
2018-01-28 15:47:43.742 [info] <0.1417.0> closing AMQP connection <0.1417.0> ([::1]:49058 -> [::1]:5672, vhost: '/', user: 'root')

为什么信息发不过来?

liwlm1x9

liwlm1x91#

您的代码看起来非常好,只是您将消息发送到了错误的队列。当你发送一条消息到一个不存在的队列时,RabbitMQ会简单地丢弃这条消息,因为它不知道把它发送到哪里。
在代码中,使用默认交换来发送消息。即:

$channel->basic_publish($msg, '', 'hello');

这里我们使用默认的或无名的交换:消息被路由到具有routing_key指定名称的队列(如果存在)。路由键是basic_publish的第三个参数
https://www.rabbitmq.com/tutorials/tutorial-three-php.html
因此,当您使用default exchange时,必须将routing key指定为第三个参数,即您的队列名称。RabbitMQ在使用默认交换时创建与队列同名的路由键。
要修复代码,只需将hello更改为您的队列名称,即my_queue,它将开始发送和接收。
希望有帮助:)

d7v8vwbk

d7v8vwbk2#

由于您没有将my_queue绑定到任何交换机,因此必须使用my_queue作为路由键发布到默认交换机。所有队列都使用队列名作为路由键绑定到默认的主题交换。
在你的代码中,你使用hello作为路由键。

相关问题