3条回答
Y_vocefenrir 2020-07-21 15:49关注activemq 默认只能当前服务器访问,如果需要外部访问,需要修改jetty.xml文件
<bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start"> <!-- the default port number for the web console --> <property name="host" value="192.168.213.133"/> // 将 127.0.0.1 修改为外网IP即可访问 <property name="port" value="8161"/> </bean>评论 打赏 举报解决 8无用 5


