0

“执行命令时出错:无法解析 URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war]。”

当我做功能时抛出:安装activemq-web-console 我正在使用fuse 4.3

4

2 回答 2

0

从 features:removeUrl 中删除了 activemq 的旧 Url 并添加了新的 mvn:org.apache.activemq/activemq-karaf/5.4.0/xml/features

并重新安装了activemq features。如果您无法安装 mvn url,则必须将 fuse repo 添加到您的 maven 设置 xml。除此之外,还有一个众所周知的错误

Add the following lines to etc/system.properties 




   webconsole.type=properties
   webconsole.jms.url=tcp://localhost:61616
   webconsole.jmx.url=service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-root
   webconsole.jmx.user=smx 
   webconsole.jmx.password=smx

这将使您的控制台工作

于 2010-09-17T07:00:40.100 回答
0

对于新手,请按照以下步骤操作: 1. 使用以下命令列出所有功能:karaf@root> features:listurl 2. 您可以使用以下命令删除 url: features:removeurl

您可以在列出 url 的步骤 1 中的上述 removeurl 命令中找到要删除的 url。

  1. 添加要使用以下命令的 url: features:addurl <>

然后按照上面 sanre6 提到的步骤进行操作。

于 2013-01-21T16:51:35.187 回答