Tools, FAQ, Tutorials:
Hyperledger Composer Environment Components
What components are included in my Hyperledger Composer Environment?
✍: FYIcenter.com
The fabric-dev-servers.tar.gz package provides the 4
components running as Docker containers to form your
Hyperledger Composer Environment.
You can identify Hyperledger Composer by their container names from the output of the "docker ps" command:
$ 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
peer0.org1.example.com - A peer node owned by org1.example.com. It listens inbound transaction requests at port 7051. It also emits outbound event messages at port 7053.
couchdb - A CouchDB database to support the peer.
orderer.example.com - The Orderer node owned by example.com. It listens inbound requests at port 7050.
ca.org1.example.com - A CA (Certificate Authority) node to authenticate participants. It listens inbound requests at port 7054.
Â
⇒ Hyperledger Composer Environment Orgs and Users
⇠"configtx.yaml" Environment Configuration File
2020-07-14, ∼1398🔥, 0💬
Popular Posts:
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...