Active MQ 启动

今天在玩Active MQ时,遇到一些小问题。现分享如下:

1. 下载ActiveMQ地址

http://activemq.apache.org/download.html

2. 解压缩到Windows系统中的如下目录

D:\software\develop\MQ\apache-activemq-5.15.4

3. 启动ActiveMQ

./activemq start

4. 出现如下error 信息

java.net.URISyntaxException: Illegal character in hostname at index 10: ws://{username}:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600
 attempt: org.springframework.beans.factory.BeanCreationException: Error creatin
g bean with name 'org.apache.activemq.xbean.XBeanBrokerService#0' defined in cla
ss path resource [activemq.xml]: Invocation of init method failed; nested except
ion is java.net.URISyntaxException: Illegal character in hostname at index 10: w
s://Frank_ding:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600
ERROR: java.lang.RuntimeException: Failed to execute start task. Reason: java.la
ng.IllegalStateException: BeanFactory not initialized or already closed - call '
refresh' before accessing beans via the ApplicationContext
java.lang.RuntimeException: Failed to execute start task. Reason: java.lang.Ille
galStateException: BeanFactory not initialized or already closed - call 'refresh
' before accessing beans via the ApplicationContext

解决方案:

修改./conf/activemq.xml, 将transportConnector中的uri的默认0.0.0.0 修改为如下的127.0.0.1 。问题解决了。

        <transportConnectors>
            <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
            <transportConnector name="openwire" uri="tcp://127.0.0.1:61616?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="amqp" uri="amqp://127.0.0.1:5672?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="stomp" uri="stomp://127.0.0.1:61613?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="mqtt" uri="mqtt://127.0.0.1:1883?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="ws" uri="ws://127.0.0.1:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
        </transportConnectors>

5. 测试

http://127.0.0.1:8161/admin/
账户密码都是admin
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值