我在{10}上生成的RabbitMQ安装 - 在Windows 10上生成虚拟框(Ubuntu 16.04 x64)。
设置完成后,我使用rabbitmqctl
配置了新用户:
# rabbitmqctl add_user root root
# rabbitmqctl set_permissions -p / root ".*" ".*" ".*"
# rabbitmqctl set_user_tags root administrator
在PuPHPet之后,我设置了发件人和收件人脚本。
发件人脚本如下:
<?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!'
发件人脚本没有遇到任何错误(我能够验证队列是否在兔子中声明),但是接收者没有输出它已收到/消费任何消息。
此外,使用管理员管理器插件进行快速检查表明该队列根本没有消息:
$ 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
},
...
看起来该消息已被接受但会被立即丢弃&amp;没有记录。说到日志,兔子日志中也没有任何可疑之处。其中很多:
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')
为什么没有消息传来?
答案 0 :(得分:1)
RabbitMQ团队监控this mailing list,有时只回答StackOverflow上的问题。
由于您未将my_queue
绑定到任何交换,因此必须使用my_queue
作为路由密钥发布到默认交换。使用队列名称作为路由密钥,所有队列都绑定到默认主题交换。
在您的代码中,您使用hello
作为路由密钥。
答案 1 :(得分:1)
您的代码似乎完全正常,除非您已将消息发送到错误的队列。当您将消息发送到不存在的队列时,RabbitMQ将简单地丢弃该消息,因为它不知道将消息发送到何处。
在您的代码中,您使用默认的交换来发送消息。那就是:
$channel->basic_publish($msg, '', 'hello');
这里我们使用默认或无名交换:消息被路由到 具有由routing_key指定的名称的队列(如果存在)。该 routing key是basic_publish的第三个参数
所以当你使用default exchange
时,你必须指定routing key
作为第三个参数,这是你的队列名称。当您使用默认交换时,RabbitMQ会创建与队列同名的路由密钥。
要修复代码,只需将hello
更改为您的队列名称,即my_queue
,它就会开始发送和接收。
希望有所帮助:)