1,本地部署
具体参考官方教程 https://rocketmq.apache.org/zh/docs/quickStart/01quickstart
在执行 `
sh bin/mqbroker -n localhost:9876 --enable-proxy

java.lang.IllegalStateException: Failed to bind to 0.0.0.0:8080

说明跟现有端口冲突,8080是proxy默认的,如果想修改,需要修改配置文件,使用的默认配置文件在
conf/rmq-proxy.json。改成下面这样就好了

{
"rocketMQClusterName": "DefaultCluster",
"remotingListenPort": 8181
}


使用 sh bin/mqbroker -n localhost:9876 --enable-proxy -c conf/broker.conf 来修改
broker.conf文件,添加配置不管用。
proxyPort = 8081

英雄之旅
8 声望1 粉丝