Tools, FAQ, Tutorials:
stop.sh - Stop basic-network
How to run stop.sh script to stop the Hyperledger Fabric example network, basic-network?
✍: FYIcenter.com
You can follow this tutorial to
run stop.sh script to stop the Hyperledger Fabric example network,
basic-network.
1. Run stop.sh script to stop the basic-network:
$ cd ~/hyperledger-binaries/fabric-samples/basic-network $ ./stop.sh # Shut down the Docker containers that might be currently running. docker-compose -f docker-compose.yml stop Stopping peer0.org1.example.com ... done Stopping orderer.example.com ... done Stopping couchdb ... done Stopping ca.example.com ... done
2. Check the status of all Docker containers of basic-network:
$ docker ps --all IMAGE STATUS NAMES hyperledger/fabric-peer Exited (0) peer0.org1.example.com hyperledger/fabric-orderer Exited (0) orderer.example.com hyperledger/fabric-couchdb Exited (143) couchdb hyperledger/fabric-ca Exited (137) ca.example.com
3. Check container images:
$ docker images | grep fabric REPOSITORY TAG CREATED SIZE hyperledger/fabric-orderer 2.0.0 12 days ago 39.3MB hyperledger/fabric-peer 2.0.0 12 days ago 46.7MB hyperledger/fabric-couchdb latest 4 weeks ago 1.5GB hyperledger/fabric-ca latest 3 months ago 244MB
As you can see, those 4 containers are stopped. But they are still left on the Docker engine.
Image files for those containers are also left on the Docker engine.
Â
⇒ teardown.sh - Teardown basic-network
⇠start.sh - Start basic-network
⇑ fabric-samples/basic-network
⇑⇑ Hyperledger Tutorials
2020-04-25, 739👍, 0💬
Popular Posts:
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...