Artemis-2.6.3控制台:服务不可用

时间:2018-11-12 07:12:26

标签: java activemq-artemis

我成功启动了artemis-service。但是Web控制台无法正常工作。

cmnd: sudo“ / usr / lib / myBroker / bin / artemis-service”启动

url: http://ip:8161/console/

响应:

  

HTTP错误503访问/ console /时出现问题。原因:

Service Unavailable

我将 bootstrap.xml 更改为从外部访问 8161 端口。

发件人: bind =“ http:// localhost:8161”

收件人: bind =“ http://0.0.0.0:8161”

NB :当我在本地计算机上启动它时,可以正常运行而无需更改bootstrap.xml。

2 个答案:

答案 0 :(得分:0)

解决方案

jolokia-access.xml出现此问题。 删除allow-origin并添加以下配置:

<remote>
      <host>localhost</host>
      <host>192.168.0.0/16</host>
</remote>

在这里,我允许192.168块ip。

文档here

答案 1 :(得分:-2)

 26         <!-- Allow cross origin access from localhost ... -->
 27         <allow-origin>*</allow-origin>

全部匹配