我正在关注Hyperledger Fabric的教程,以便创建第一个网络。 https://hyperledger-fabric.readthedocs.io/en/release-1.3/build_network.html
在Create & Join Channel部分中,控制台上的错误,从而阻止了测试的完成。
我已经多次逐步学习本教程:重新加载所需的所有先决条件并始终执行命令
./byfn.sh down
本教程提供的命令是:
peer channel create -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/channel.tx --tls --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
当我写到控制台时,通过其值[testchainid]更改CHANNEL_NAME,我得到以下输出:
2018-12-19 15:57:52.589 UTC [channelCmd] InitCmdFactory -> INFO 001 Endorser and orderer connections initialized
Error: got unexpected status: FORBIDDEN -- Failed to reach implicit threshold of 1 sub-policies, required 1 remaining: permission denied
这可能是什么问题?
我正在使用MacBookPro,Docker 18.09.0,最新的Go,Python,Hyperledger Fabric示例1.3.0。
谢谢!