gpt4 book ai didi

hyperledger - super 账本中的第一个网络

转载 作者:行者123 更新时间:2023-12-01 00:25:15 24 4
gpt4 key购买 nike

我正在尝试在 Hyperledger Fabric 中处理我的第一个网络。使用以下文档
http://hyperledger-fabric.readthedocs.io/en/latest/build_network.html

我已经完成设置,直到
http://hyperledger-fabric.readthedocs.io/en/latest/build_network.html#create-join-channel

但是当我运行

peer channel create -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/channel.tx --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem

我有错误

Error: Got unexpected status: BAD_REQUEST



搜索我遇到的问题
http://hyperledgerdocs.readthedocs.io/en/latest/asset_trouble.html

因此,我尝试使用给定的新 channel 名称(旧 channel 名称=我的 channel ),
我试过下面的cmds
CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050 peer channel create -c myc1 CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer.example.com:7050 peer channel create -c myc1 CORE_PEER_COMMITTER_LEDGER_ORDERER=172.18.0.2:7050 peer channel create -c myc1
对于所有三个我都收到错误

Error: Ordering service endpoint is not valid or missing Usage: peer channel create [flags]



假设 channel 已经创建,我也尝试跳过它。
于是跑了
peer channel join -b ./mychannel.block

但是得到了

Error: proposal failed (err: rpc error: code = Unknown desc = chaincode error (status: 500, message: Cannot create ledger from genesis block, due to LedgerID already exists))



我的操作系统是 Ubuntu 16.04

docker
Docker ps output
请帮忙

最佳答案

让我们尝试确保您按照 docs 中概述的所有步骤运行。 .

  • 首先你需要编辑你的docker-compose-cli.yaml将 cli 部分归档以注释掉负责运行 channel 创建和加入的自动流程的行:
    command: /bin/bash -c './scripts/script.sh ${CHANNEL_NAME}; sleep $TIMEOUT'

  • 例如。
    # command: /bin/bash -c './scripts/script.sh ${CHANNEL_NAME}; sleep $TIMEOUT'
  • 您正在使用的下一个导出 channel 名称:
    export CHANNEL_NAME=mychannel
  • 启动网络(使用默认超时时间 60s):
    CHANNEL_NAME=$CHANNEL_NAME docker-compose -f docker-compose-cli.yaml up -d
  • 进入 cli 容器:
    docker exec -it cli bash
  • 导出环境变量:
    export CHANNEL_NAME=mychannel
  • 创建 channel :
    peer channel create -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/channel.tx --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
  • 加入 channel :
    peer channel join -b mychannel.block
  • 关于hyperledger - super 账本中的第一个网络,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45434262/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com