本文介绍了如何配置ActiveMQ 5.10.0 HawtIO接口?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用ActiveMQ 5.9.0,它具有惊人的HawtIO界面。因此,当5.10.0出现时,我也迁移了我的系统。现在,我发现HawtIO接口不存在于其中...从5.9.0到5.10.0的 webapps 文件夹中它都消失了,所以我尝试了教程,但是不起作用...如何配置接口?

I'm using ActiveMQ 5.9.0 that has a amazing HawtIO interface. So when 5.10.0 has come, I migrated my system too. Now I see that the HawtIO interface doesn't exist inside it... It just disappeared from webapps folder from 5.9.0 to 5.10.0, so I tried the tutorial ActiveMQ and HawtIO but it doesn't work... How to configure the interface?

推荐答案

或者,您可以将HawtIO用作独立的Web应用程序,该应用程序通过Jolokia(5.9版之前的方法)连接到ActiveMQ。

Alternatively, you can use HawtIO as a standalone web-app, that connects to ActiveMQ through Jolokia (pre 5.9 way of doing it).


  1. 在此处下载HawtIO独立jar:

  2. 在ActiveMQ服务器上运行jar: java -jar hawtio-app -1.4.37.jar (将命令放入.bat脚本中,如果希望它在启动时运行,则添加计划任务。)

  3. 导航到http:// 您的服务器:8080 / hawtio

  4. 创建一个新连接,为其命名,使用本地主机作为主机, 8161 作为端口, api / jolokia 作为路径。

  1. Download the HawtIO standalone jar here: http://hawt.io/getstarted/index.html
  2. Run the jar on the ActiveMQ-server: java -jar hawtio-app-1.4.37.jar (put the command in a .bat-script and add a scheduled task if you want it to run on startup..)
  3. Navigate to http://your server:8080/hawtio
  4. Create a new connection, give it a name, use localhost as host, 8161 as port and api/jolokia as path.

连接,尽情享受吧!

这篇关于如何配置ActiveMQ 5.10.0 HawtIO接口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-27 14:13