在Hyperledger Fabric中创建对等通道失败

问题描述 投票:0回答:1

我正在按照教程将Hyperledger Composer区块链业务网络部署到多个组织中的Hyperledger Fabric:https://hyperledger.github.io/composer/latest/tutorials/deploy-to-fabric-multi-org

我遵循了先决条件,在完成第一步后,在成功生成通道的certs和genesis块之后,执行命令时:

./byfn.sh -m up -s couchdb -a

它给出以下错误:

Channel name : mychannel
Creating channel...
2018-08-29 21:10:17.473 UTC [main] main -> ERRO 001 Cannot run peer because cannot init crypto, missing /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/[email protected]/msp folder
!!!!!!!!!!!!!!! Channel creation failed !!!!!!!!!!!!!!!!
========= ERROR !!! FAILED to execute End-2-End Scenario ===========

+ res=1
+ set +x
ERROR !!!! Test failed

有谁知道如何解决这个问题?

hyperledger-fabric hyperledger blockchain hyperledger-composer
1个回答
0
投票

确保你的GOPATH设置正确。

看看crypto/peerOrganizations/org1.example.com/users/[email protected]/msp路径是否存在。此路径位于crypto-config文件夹中。

由于root用户,有时无法访问管理员证书。

© www.soinside.com 2019 - 2024. All rights reserved.