2

我可以使用检查所有功能features:list

我想在 JBOSS Fuse 中安装某些功能,但是命令

features:install camel-blueprint

不管用

我收到错误

    Error executing command: The container is managed by fabric, please use fabric:profile-edit --featur
es camel-blueprint/0.0.0 target-profile instead. See fabric:profile-edit --help for more information.

如何在 JBOSS FUSE 中安装所需的功能。

在 JBOSSFUSE_HONE/etc/org.apache.karaf.features.cfg 文件中,我调用了一个条目featuresBoot并添加了所有需要在启动时加载的功能

但是,所有功能的状态都已卸载。

4

3 回答 3

2

JBoss Fuse 使用配置文件(结构)来定义要在容器上安装的内容,因此您可以编辑配置文件,然后将配置文件分配给容器。

坦率地说,看一些视频更容易熟悉

例如贷款经纪人视频是一个好的开始。

如果您不想使用fabric,那么您可以像在Apache Karaf 上那样使用手动命令进行安装。但这要求您不要在 JBoss Fuse 中安装结构。

您还可以深入了解 Red Hat JBoss Fuse 文档(此处的文档链接)

您还可以在 fabric8 项目(JBoss Fuse 的社区项目)文档中找到更多详细信息:

于 2014-03-27T07:40:03.560 回答
1

The short answer here is that you have probably already set up this instance of JBoss Fuse / Fuse Fabric to be container managed, via fabric:create.

To "reset" your local installation (be careful! this deletes all containers and related configuration), run this command in cygwin to delete data, instances and lock:

cd /wherever/fabric8-karaf-1.0.0.redhat-412
$ rm -rf data instances lock

Now, when you restart Fuse, you should be able to install features directly.

于 2015-01-23T12:01:01.940 回答
0

我从错误消息中复制了下面的文本。它应该工作。

“请使用'fabric:profile-edit --features camel-blueprint/0.0.0 target-profile'”

于 2015-06-17T16:21:37.570 回答