美文网首页go语言
go连接RabbitMQ "no access to

go连接RabbitMQ "no access to

作者: ljh123 | 来源:发表于2018-10-01 16:16 被阅读40次

连接的失败报错:RabbitMQ Exception (403) Reason: "no access to this vhost"

因为没有配置该用户的访问权限,可以通过
rabbitmqctl add_vhost admin
来添加,并赋予权限:
rabbitmqctl set_permissions -p 用户名 admin "." "." ".*"

代码在连接的时候,必须制定对应的vhost,否则是没有访问权限:
conn, err := amqp.Dial("amqp://sky:password@ip:5672/admin”)

相关文章

网友评论

    本文标题:go连接RabbitMQ "no access to

    本文链接:https://www.haomeiwen.com/subject/qtynoftx.html