Hyperledger,使用 configtxgen CLI 工具创建通道

Hyperledger, create a channel using the configtxgen CLI tool

我正在学习 https://hyperledger-fabric.readthedocs.io/en/release-2.1/create_channel/create_channel.html 教程。
首先,我没有在我的版本 configtx.yaml 的配置文件中找到 TwoOrgsChannel,所以我将这部分添加到配置文件中并让它工作并成功地为 channel1.
创建了一个通道创建交易。 但是之后的命令将使用 peer channel create 创建通道,return 一个我搜索过但没有得到任何类似 post 的错误,即:
背书者和排序者连接已初始化 错误:得到意外状态:BAD_REQUEST -- 不允许创建通道请求,因为未定义订购者系统通道

我添加到个人资料的部分是:

TwoOrgsChannel:
    Consortium: SampleConsortium
    <<: *ChannelDefaults
    Application:
        <<: *ApplicationDefaults
        Organizations:
            - *Org1
            - *Org2
        Capabilities:
            <<: *ApplicationCapabilities 

您是否在 configtx.yaml 中创建了订购者资料?

订单需要有序系统通道,通道初始化需要对等体。

为 configtx.yaml

引用此 link

https://medium.com/@msakhilvinayak/understanding-configurations-in-hyperledger-fabric-ff3f5c23625a