Simple Steps To Run Hyperledger Fabric Composer Network With Multiple Organization
In my previous article, I wrote about how to run Hyperledger Fabric with multiple peers running in different physical machines. And in this article it’s more towards setting up Hyperledger Fabric with multi organization configuration and deploying a composer network.
Subscribe to our awesome Newsletter.
I’ve created a sample project with the help of composer’s multi organization tutorial (https://hyperledger.github.io/composer/tutorials/deploy-to-fabric-multi-org.html) And here I’ll be talking about how to use my scripts and the things to be remembered while setting up the composer profiles and network cards.
Setting up the project
As the first step, clone our sample Repo from Github.
1
| git clone https://github.com/skcript/hyperledger-fabric-composer-multiorg-sample |
This has everything already setup and you just need to run the below mentioned scripts for getting it up and running.
Script to start the network
Here is the collection scripts that are extracted from the composer’s official documentation for running multi organization fabric.
1 2 3 4 5 | ./destroy.sh # This is to remove the docker images. ./stop.sh ./byfn.sh -m generate ./byfn.sh -m up -s couchdb -a ./init.sh |
Points To Remember
- Make sure that you’ve generated your own certificates with
./byfn.sh -m generate
- Replace the certificates path in all the
composer card create
steps ofinit.sh
- Later if you want to create customized domain and organization names edit the docker compose files of byfn
In my future articles, I’ll write about how to run it in multiple host machines with corresponding scripts.