Activemq访问不了管理页面解决方案
原因:8161端口都开启的情况下还是访问不了管理页面
解决方案:修改apache-activemq-5.16.0/conf/jetty.xml配置文件
(1)将name=host里的地址(127.0.0.1)改为0.0.0.0
<bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start">
<!-- the default port number for the web console -->
<property name="host" value="0.0.0.0"/>
<property name="port" value="8161"/>
</bean>
(2)若是activemq里的端口号也有127.0.0.1也得修改为0.0.0.0(我这边activemq版本的配置文件不用修改,默认是导入的jetty.xml)
(3)最后重启ativemq服务
参考博客原址:https://blog.csdn.net/gaoduicai/article/details/104652073