安装下载好rabbitmq,我在springboot整合mq,启动的时候报错了
An unexpected connection driver error occured
后来又报
Failed to check/redeclare auto-delete queue(s).
综合就是连接问题,端口有问题
我试过添加账户,提高权限,都没用,参考了
https://blog.csdn.net/weixin_43933728/article/details/124691726
解决办法
最后发现端口的问题
我的yml配置
spring:
rabbitmq:
host: 124.223.35.137
port: 15672
username: admin
password: 123
# publisher-confirm-type: correlated
安装的时候配置的15672,网页访问也是15672,但是mq只能写5672
所以端口改一下,然后服务器的5672和百度云后台的5672端口都开放一下文章来源:https://www.toymoban.com/news/detail-512375.html
spring:
rabbitmq:
host: 124.223.35.137
port: 5672
username: admin
password: 123
最后运行成功
文章来源地址https://www.toymoban.com/news/detail-512375.html
到了这里,关于An unexpected connection driver error occured的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!