Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Composer network install: ERROR no valid responses from any peers

I'm working on the hyperledger blockchain on Ubuntu 18-04 LTS via this tuto hyperledger.github.io/composer/latest/tutorials/developer-tutorial . I have installed all the pre-requisites and in this step of running "composer network install", I faced this issue and tried some solutions but still not working. Any help please ? Thanks !

~/tutorial-network$ composer network install --card PeerAdmin@hlfv1 --archiveFile [email protected]

✖ Installing business network. This may take a minute... Error: Error trying install business network. Error: No valid responses from any peers. Response from attempted peer comms was an error: Error: Failed to connect before the deadline Command failed

Docker ps and version

like image 864
Amine Kaabar Avatar asked Jan 02 '23 21:01

Amine Kaabar


1 Answers

your fabric network is not running.

go to your fabric-dev-servers folder and run ./startFabric.sh

if you get any errors there, like some containers already exist then do a ./teardownFabric.sh first then run the start command again.

This will give you a basic running network with one org, one peer and one orderer.

Once your network is running then you need to create your admin card by running ./createPeerAdminCard.sh

only at this point you are ready to install and start your chaincode.

like image 55
Andrei Dragotoniu Avatar answered Jan 26 '23 01:01

Andrei Dragotoniu