CentOS7 install RabbitMQ vhr the project and then run the upgrade IDEA

CentOS7 install RabbitMQ

Understanding Message Queuing Middleware --RabbitMQ

https://www.rabbitmq.com

RabbitMQ Tutorials

Song Ge's new micro personnel deployed Tutorial

vhr project github source code address

Song Ge recent upgrade of vhr after this when using SpringBoot + front and rear end of the separation of micro-projects Vue personnel development was found to increase mail transmission module and RabbitMQ messaging middleware, but the deployment of RabbitMQ installed under VMware Workstation Pro15 CentOS7 system in a virtual machine , application.properties change in the profile corresponding to the configuration of RabbitMQ virtual machine configuration, as follows:

spring.rabbitmq.username=test
spring.rabbitmq.password=123456
spring.rabbitmq.host=http://192.168.131.125
spring.rabbitmq.port=5672

Cause the following error when running the new version of vhr project in SpringBoot in:

java.lang.IllegalArgumentException: Address http://120.79.211.26:15672/#/:5672 seems to contain an unquoted IPv6 address. Make sure you quote IPv6 addresses like so: [2001:db8:85a3:8d3:1319:8a2e:370:7348]

Later Baidu query to the corresponding blog: RabbitMQ messaging middleware speed entry and real - time to send a message the production side of the thrown exception
Obviously, my ip address wrong, be careful not to add the prefix "http: //"
into spring.rabbitmq.host = 192.168.131.125
and then start vhr project in SpringBoot in OK.

Published 107 original articles · won praise 35 · views 970 000 +

Guess you like

Origin blog.csdn.net/ccf19881030/article/details/103794584
Recommended