Reputation: 2018
When I try this command
docker exec -e "CORE_PEER_LOCALMSPID=Org1MSP" -e "CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/msp/users/[email protected]/msp" peer0.org1.example.com peer channel create -o orderer.example.com:7050 -c mychannel -f /etc/hyperledger/configtx/channel.tx
,
It works. But when I try to replace "orderder.example.com" with the IP of the machine where Orderer is running, I've got this error :
Error: got unexpected status: FORBIDDEN -- Failed to reach implicit threshold of 1 sub-policies, required 1 remaining: permission denied
Why ? this is a problem because I have the same error when I try to fetch config from another machine.
Ask me if you need for info.
Upvotes: 0
Views: 814
Reputation: 89
Seems issue with docker compose file where address is specified , please check. IP address is not resolving to orderer.
Upvotes: 1