“执行命令时出错:无法解析 URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war]。”
当我做功能时抛出:安装activemq-web-console 我正在使用fuse 4.3
“执行命令时出错:无法解析 URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war]。”
当我做功能时抛出:安装activemq-web-console 我正在使用fuse 4.3
从 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
这将使您的控制台工作
对于新手,请按照以下步骤操作: 1. 使用以下命令列出所有功能:karaf@root> features:listurl 2. 您可以使用以下命令删除 url: features:removeurl
您可以在列出 url 的步骤 1 中的上述 removeurl 命令中找到要删除的 url。
然后按照上面 sanre6 提到的步骤进行操作。