2023-12-28 17:02:07 2023-12-28 13:02:07.875320+00:00 [info] accepting AMQP connection (172.26.0.8:45438 -> 172.26.0.2:5672)
2023-12-28 17:02:07 2023-12-28 13:02:07.877505+00:00 [info] connection (172.26.0.8:45438 -> 172.26.0.2:5672): user 'guest' authenticated and granted access to vhost '/'
2023-12-28 17:02:07 2023-12-28 13:02:07.877753+00:00 [info] closing AMQP connection (172.26.0.8:45438 -> 172.26.0.2:5672, vhost: '/', user: 'guest')
代码:
//创建连接
$this->connection = new \AMQPConnection($this->config);
if (!$this->connection->connect()) {
throw new \Exception('RabbitMQ 创建连接失败');
}
config:
array(
'host' => rabbitmq
'port' => 5672
'login' => guest
'password' => guest
'vhost' => ''
);
rabbitmq 安装成功也能成功进入管理页面