How to solve ERROR manifest for hyperledger fabric-orderer latest not found error

+3 votes

I am trying to run the following command

./network_setup.sh up  channel

And I get this error:

ERROR: manifest for hyperledger/fabric-orderer:latest not found

How to solve this?

Jul 31, 2018 in Blockchain by slayer
• 29,350 points
5,898 views

4 answers to this question.

+1 vote

You need to make changes to your yaml file and mention the version.

Replace

image: hyperledger/fabric-orderer

with

image: hyperledger/fabric-orderer:x86_64-1.0.0

And you can not directly run the

./network_setup.sh

 Command.

To proper execute it, run the following commands:

sudo rm -Rf $GOPATH/src/github.com/hyperledger

mkdir -pv $GOPATH/src/github.com/hyperledger

cd $GOPATH/src/github.com/hyperledger

git clone http://gerrit.hyperledger.org/r/fabric

git clone https://github.com/hyperledger/fabric-ca

cd $GOPATH/src/github.com/hyperledger/fabric

git branch --all

git fetch

make clean

make dist-clean

make configtxgen

make docker

make peer-docker

make orderer-docker

make couchdb

cd $GOPATH/src/github.com/hyperledger/fabric-ca

git branch --all

git fetch

make clean

make dist-clean

make docker 

answered Jul 31, 2018 by digger
• 26,740 points
+1 vote

This worked for me: replace the below line in yaml file:

image: hyperledger/fabric-orderer

with line:

image: hyperledger/fabric-orderer:x86_64-1.0.0
answered Sep 6, 2018 by Lohit
+1 vote
answered Sep 6, 2018 by Motilal
+1 vote

I was having the same problem and what I did was to go to the console and list all the docker images I had in my computer with:

docker images --all

And I got a list like this:

REPOSITORY                              TAG                 IMAGE ID            CREATED             SIZE
dev-peer0.org1.example.com-fabcar-1.0   latest              2b951138a408        10 hours ago        173MB
<none>                                  <none>              0dc88d79f8bf        10 hours ago        173MB
<none>                                  <none>              94c8e5b3db58        10 hours ago        173MB
hyperledger/fabric-ca                   x86_64-1.1.0        72617b4fa9b4        6 weeks ago         299MB
hyperledger/fabric-tools                latest              b7bfddf508bc        6 weeks ago         1.46GB
hyperledger/fabric-tools                x86_64-1.1.0        b7bfddf508bc        6 weeks ago         1.46GB

So, given that the version I know I downloaded was 1.1.0, I went to the docker-compose.yml file and looked for all the lines that started with image: and added at the end the same tag that the images had. For example:

image:hyperledger/fabric-ca

was updated to

image: hyperledger/fabric-ca:x86_64-1.0.0
answered Sep 6, 2018 by Rakesh

Related Questions In Blockchain

0 votes
1 answer

Hyperledger Fabric: ERROR: manifest for hyperledger/fabric-ca:latest not found.

docker pull hyperledger/fabric-ca:x86_64-1.1.0-preview Now tag this the latest ...READ MORE

answered Nov 13, 2018 in Blockchain by Omkar
• 69,210 points
1,343 views
0 votes
1 answer

Error during Hyperledger installation: Manifest peer latest not found

Change the tag from latest to x86_64-1.0.2 in the compose file. ...READ MORE

answered Jul 13, 2018 in Blockchain by Perry
• 17,100 points
577 views
+1 vote
5 answers

How to solve "truffle: command not found" error in blockchain?

First try restarting the system and then ...READ MORE

answered Jul 16, 2018 in Blockchain by slayer
• 29,350 points
11,273 views
0 votes
1 answer

Hyperledger Sawtooth vs Quorum in concurrency and speed Ask

Summary: Both should provide similar reliability of ...READ MORE

answered Sep 26, 2018 in IoT (Internet of Things) by Upasana
• 8,620 points
1,215 views
0 votes
1 answer

How to create a Genesis Block in a Private Network?

{     "nonce": "0x0000000000000042",     "difficulty": "0x000000100",     "alloc": {     },     "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",     "coinbase": "0x0000000000000000000000000000000000000000",     "timestamp": "0x00",     "parentHash": ...READ MORE

answered Jul 12, 2018 in Blockchain by digger
• 26,740 points
1,797 views
0 votes
1 answer

Invalid Batch or signature in Savtooth

This will solve your problem import org.apache.commons.codec.binary.Hex; Transaction txn ...READ MORE

answered Aug 1, 2018 in Blockchain by digger
• 26,740 points
708 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP