Step 1 - Bring up the Fabric CA
Last updated
Was this helpful?
Last updated
Was this helpful?
The following excerpt from brings up the docker containers. In short certificate authorities (aka CA) are the software component which verifies the identity of a node or client based on cryptographic certs.Fabric has made it easier to start off with fabric ca docker images however in real life there will mostly a third part CA (like verisign , GoDaddy)
take a look at the ca docker compose . It brings up 3 containers based on fabric-ca docker image (first representing CA of investor organisation , second representing CA of corporate/management organisation , third other CA representing organisation)
next we install the fabric-ca-client command which will be used to register the peer nodes of each org with the ca-server.
we then invoke functions in registerEnroll.sh to register all the users and peers for each org with respective fabric ca server.