Tools, FAQ, Tutorials:
Start/Stop Hyperledger Fabric Dev Environment
How to start and stop Hyplerledger Fabric Dev Environment?
✍: FYIcenter.com
You can follow this tutorial to start and stop Hyplerledger Fabric on Ubuntu.
1. Make sure the Docker Engine is running:
$ ps -e | grep dockerd 17939 ? 00:39:58 dockerd $ docker info Containers: 6 Running: 4 Paused: 0 Stopped: 2 Images: 88 Server Version: 18.09.2 ...
2. Start the Hyplerledger Fabric Dev Environment:
$ cd fabric-dev-servers $ export FABRIC_VERSION=hlfv12 $ ./startFabric.sh FABRIC_START_TIMEOUT is unset, assuming 15 (seconds) Removing peer0.org1.example.com ... done Removing couchdb ... done Removing ca.org1.example.com ... done Removing orderer.example.com ... done Removing network composer_default Creating network "composer_default" with the default driver Creating ca.org1.example.com ... done Creating orderer.example.com ... done Creating couchdb ... done Creating peer0.org1.example.com ... done sleeping for 15 seconds to wait for fabric to complete start up
3. Checking Fabric containers:
$ docker ps CONTAINER ID IMAGE ... NAMES ... hyperledger/fabric-peer:1.2.1 ... peer0.org1.example.com ... hyperledger/fabric-couchdb:0.4.10 ... couchdb ... hyperledger/fabric-orderer:1.2.1 ... orderer.example.com ... hyperledger/fabric-ca:1.2.1 ... ca.org1.example.com
3. Stop the Hyplerledger Fabric Dev Environment:
$ cd fabric-dev-servers $ ./stopFabric.sh $ docker ps ... those 4 Fabric containers are not there any more.
Â
⇒ Warning on Incompatible "npm" Version
⇠Install Hyperledger Fabric on UBuntu
2021-04-04, 1055🔥, 0💬
Popular Posts:
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...