我有一个用于开发目的的 ubuntu 服务器,运行着 activemq。我从软件包存储库安装了它们,并对 activemq 做了一些小配置。我想使用管理控制台,但为了做到这一点,我需要 webapps 文件夹,而软件包中似乎缺少这个文件夹。
我在包中搜索了一下,没有找到任何东西。我猜想 webapps 应该位于{activemq.home}
从包中定义的文件夹中/usr/share/activemq
。我还知道它需要 jetty 配置,如 xml 中所示。jetty 配置可以在示例文档中找到:/usr/share/doc/activemq/examples/conf/jetty.xml.gz
我的问题是,我应该在 jetty.xml 中放入什么才能使管理控制台正常工作?我是否应该将从 apache 站点下载的 tar.gz 包中的 webapps 文件夹复制到主文件夹?
如果有帮助的话,发布我当前的activemq.xml:
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.base}/data" destroyApplicationContextOnStop="true">
<destinationPolicy>
<policyMap>
<policyEntries>
<policyEntry topic=">" producerFlowControl="true" memoryLimit="1mb">
<pendingSubscriberPolicy>
<vmCursor />
</pendingSubscriberPolicy>
</policyEntry>
<policyEntry queue=">" producerFlowControl="true" memoryLimit="1mb">
</policyEntry>
</policyEntries>
</policyMap>
</destinationPolicy>
<destinations>
<queue physicalName="CMAgentStatus" />
<queue physicalName="CMUpdateRequest" />
<queue physicalName="CMSnapshotEvent" />
</destinations>
<managementContext>
<managementContext createConnector="true"/>
</managementContext>
<persistenceAdapter>
<kahaDB directory="${activemq.base}/data/kahadb"/>
</persistenceAdapter>
<transportConnectors>
<transportConnector name="openwire" uri="tcp://0.0.0.0:61616"/>
</transportConnectors>
</broker>
<!-- <import resource="jetty.xml"/> -->
</beans>
答案1
我最终从网站下载了 activeMQ 二进制文件并将其安装到 /opt/activemq。然后为 activemq 和 update-rc 默认值创建了 init 脚本。