无法在 Fuse 服务组合中安装 activemq-web-console
“执行命令时出错:无法解析 URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war]。”
当我执行功能时抛出:安装 activemq-web-console 我用的是4.3的保险丝
"Error executing command: URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war] could not be resolved."
is thrown up when i do features:install activemq-web-console
i am using fuse 4.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 features:removeUrl 中删除了 activemq 的旧 Url 并添加了新的 Url
mvn:org.apache.activemq/activemq-karaf/5.4.0/xml/features
并重新安装 activemq features 。如果你无法安装 mvn url,那么你必须将 fusion repo 添加到你的 Maven 设置 xml 中。
除此之外,还有一个众所周知的错误,
这将使您的控制台正常工作
removed the old Url for activemq from features:removeUrl and added the new one
mvn:org.apache.activemq/activemq-karaf/5.4.0/xml/features
and re-installed activemq features . if u are unable to install mvn url's then,u must add the fuse repo's to your maven settings xml.
apart from this there is a well known bug
this would make ur console work
对于新手,请按照以下步骤操作:
1. 使用以下命令列出所有功能:
卡拉夫@root>功能:listurl
2.您可以使用以下命令删除网址:
features:removeurl
您可以在上面列出 url 的步骤 1 中的 removeurl 命令中找到要删除的 url。
特点:addurl<>
然后按照上面 sanre6 提到的步骤进行操作。
For newbie follow these steps:
1. list all features using following command:
karaf@root> features:listurl
2. you can remove url using following command:
features:removeurl
you can find the url to remove in the above removeurl command from the step 1 where you list urls.
features:addurl <>
and then follow steps that are mentioned by sanre6 above.