0

目前我正在尝试运行基本网络。在启动 orderer 后,它存在以下错误。

panic: [channel ordererchannel] config requires unsupported channel capabilities: Channel capability V2_0 is required but not supported: Channel capability V2_0 is required but not supported ```
I am using hyperledger/fabric-orderer:2.0.0-alpha image

4

2 回答 2

1

正在使用脚本的修改版本并生成您自己的genesis.blockchannel.tx

当我生成自己的配置文件时,我遇到了和你一样的错误,但是如果我使用预先生成的配置文件,那么排序程序启动正常。

到目前为止,我的结论是 configtxgen 存在问题,而不是 fabric-orderer 2.0.0 alpha,但需要进行更多调查。

于 2019-11-18T10:01:29.887 回答
1
  • 嘿,您所要做的就是确保出现在具有 configtxgen 的 fabric-samples/bin 下的 bin 文件夹是最新的并且是 2.0.0 alpha 版本

  • 当您结帐时,它只检查源代码而不是 bin 文件夹

  • 当您克隆 fabric-samples 时,它只是下载了源代码而不是 bin 文件夹,因为它包含超过 50MB,所以 curl 命令会为您完成

  • 请确保您有 2.0.0 alpha configtxgen bin 文件并在通道功能中引用相同的文件

于 2019-11-19T06:52:33.337 回答