{"id":27168,"date":"2023-02-08T12:58:36","date_gmt":"2023-02-08T12:58:36","guid":{"rendered":"https:\/\/www.zeeve.io\/blog\/"},"modified":"2024-02-28T08:52:11","modified_gmt":"2024-02-28T08:52:11","slug":"how-to-setup-components-for-the-hyperledger-fabric-blockchain-network","status":"publish","type":"post","link":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network","title":{"rendered":"How to Setup Components for the Hyperledger Fabric Blockchain Network?"},"content":{"rendered":"
<\/div>\n

It is well-established that Hyperledger Fabric is the best open-source framework for private and permissioned blockchain networks<\/a>. In the first part of this blog, we discussed all the crucial considerations before deploying the Hyperledger Fabric<\/a> to the blockchain network, and in this (part 2) article, we will discuss how to set up components. <\/p>\n\n\n\n

Starting with setting up CA, followed by how to create MSPs, and an overview of all the consecutive steps are shared below. <\/p>\n\n\n\n

Remember that this is an overview of how to set up components for the Hyperledger Fabric blockchain network<\/a>, not a detailed explanation for a production network deployment. Albeit, a few primary codes & commands are shared to help you understand the process more easily.\u00a0<\/p>\n\n\n\n

The following steps can be developed with the help of an hlf-operator or a Helm Chart, as depicted in part 1 <\/a>of this write-up. <\/p>\n\n\n\n

So, without further ado, let’s get started. <\/p>\n\n\n\n

Setting Up Certificate Authority (CA)<\/h2>\n\n\n\n

Before setting up components, keep the Helm Chart prerequisites ready in the initial bootstrapping step. The prerequisites usually are some configmaps, and some Kubernetes secrets available in the cluster namespaces. <\/p>\n\n\n\n

Next, set up a CA server to create MSPs, and it is recommended to deploy two CAs at the least.<\/p>\n\n\n\n

One would be for enrollment purposes, and the other for TLS certifications. In this, the former is used to generate enrollment identities for nodes, org, users, and others. The TLS CA will give out TLS certificates to establish secure communications between components. <\/p>\n\n\n\n

The Fabric CA server database stores the registered users, and the helm chart is configured to use an in-memory sqlite3 database. If you wish to use an external database, you must configure it in the values<\/strong>.yaml of the hlf-ca chart. <\/p>\n\n\n\n

Find more details about setting up CA and MSPs by visiting the official Fabric documentation. <\/a><\/p>\n\n\n\n

Use this CA to Create Identities & MSPs.<\/h2>\n\n\n\n

After setting up the CA, you can generate certificates for identities and Membership Service Providers (MSPs) using the fabric-ca-client<\/strong>  CLI command. This command allows you to interact with the CA server to register, enroll ids, revoke certificates, etc. <\/p>\n\n\n\n

As there are multiple organizations and components for every organization, you will have to run similar commands time & again to create MSPS. You may automate this task using shell scripts and place it in a ca-client<\/strong> Helm Chart. <\/p>\n\n\n\n

This would be an ideal time to move the certificates to the external storage if you take the external storage route. <\/p>\n\n\n\n

Visit Identity<\/a> and Membership Service Provider (MSP)<\/a> for more information on identities and permission in the Fabric-based blockchain network<\/a>. <\/p>\n\n\n\n

The next step is choosing either LevelDB or CouchDB. It\u2019s established how Peer nodes use either LevelDB or CouchDB to store ledger data in part 1<\/a>. CouchDB is the way to go if your instance demands rich query operations on ledger data, so start CouchDB before starting the peer node for ease of configuration.<\/p>\n\n\n\n

Generating Genesis Block<\/h2>\n\n\n\n

In the latest Fabric version, v2.4, system channels are optional, and it does not need to be added to the system channel genesis block in the node<\/a> configuration. Rather, you can start generating a genesis block directly for the application channel. <\/p>\n\n\n\n

If you are still using Fabric v2.2, having an ordered system channel is necessary. The orderer system channel has the list of organizations that have permission to create channels, and orderer admins maintain this. The channel’s genesis block should be included while configuring the node before starting the orderer node. <\/p>\n\n\n\n

You can use the following command to generate genesis blocks, and check out this link for more details on generating genesis blocks<\/a>. <\/p>\n\n\n\n

Make sure Kafka brokers are set correctly in configtx.yaml<\/strong> <\/p>\n\n\n\n

Here\u2019s a sample config.tx file link.<\/a> <\/p>\n\n\n\n

configtxgen -profile TwoOrgsOrdererGenesis -outputBlock genesis.block<\/code><\/pre>\n\n\n\n
<\/div>\n\n\n\n

Deploy Peers and Orderer Nodes<\/h2>\n\n\n\n

Once you obtain the MSPs and certificates, you can deploy nodes<\/a>, but first, you must customize your config files. Core.yaml and orderer.yaml are the configuration files for peers and orderer nodes, respectively, and click this link for the Fabric sample config directory<\/a>. <\/p>\n\n\n\n

Once these two config files and the deployment backend are ready, you can install the Helm Chart in your cluster and start the orderer and peer nodes. <\/p>\n\n\n\n

Join Channel<\/h2>\n\n\n\n

Next, both the nodes must join the participating orgs, and Orderers may join with osnadmin binary<\/a>. This channel enables admins to undertake operations on the orderer, like joining, removing, and listing the channel when an orderer enters. The admin can use osnadmin channel join<\/strong> command to execute. Here\u2019s the folder structure for the same, followed by an example showing how the command is used. <\/p>\n\n\n\n

Folder Structure<\/h3>\n\n\n\n
<\/div>\n\n\n\n
\/join_channel\n|-- templates\n|   |--_helpers.tpl\n|   |-- join_channel.yaml\n|   |-- configmap.yaml\n|-- Chart.yaml\n|-- values.yaml<\/code><\/pre>\n\n\n\n
<\/div>\n\n\n\n

How\u2019s the command used:<\/h3>\n\n\n\n
<\/div>\n\n\n\n
osnadmin channel join -o orderer.example.com:9443 --ca-file $CA_FILE --client-cert $CLIENT_CERT --client-key $CLIENT_KEY --channelID mychannel --config-block mychannel-genesis-block.pb<\/code><\/pre>\n\n\n\n

Similarly, peer admins can run the peer channel<\/strong> command to perform channel operations.<\/p>\n\n\n\n

Or run the following code to Join Channel <\/p>\n\n\n\n

docker exec -e\n\"CORE_PEER_MSPCONFIGPATH=\/etc\/hyperledger\/msp\/users\/Admin@org1.example.com\/msp\"<\/code><\/pre>\n\n\n\n
peer1.org1.example.com peer channel join -b composerchannel_config.block<\/code><\/pre>\n\n\n\n
<\/div>\n\n\n\n

The Fabric Chaincode Lifecycle<\/h2>\n\n\n\n

In the latest Fabric<\/a> version updates; a new decentralized chaincode lifestyle<\/a> process was introduced to mitigate the shortcomings of the previous install-instantiate and install-upgrade legacy method. This was replaced with a four-step model, as depicted in the diagram below. <\/p>\n\n\n

\n
\"\"<\/figure><\/div>\n\n\n
<\/div>\n\n\n\n

Step 1: Packaging<\/h3>\n\n\n\n

Packaging can be completed by one or each organization, and each chaincode package is defined as a .tar.gz<\/strong> file. As mentioned, you must package the chaincode in a tar file and install it on the peer node, and this package can be made using fabric peer binary. This package then endorses and executes transitions, and the installation is carried out using the admin’s peer CLI. Then, the peer creates the chaincode and returns if there are any errors.<\/p>\n\n\n\n

Packaging the chaincode just once is recommended, and installing it to all the peers if the org has multiple peers.<\/p>\n\n\n\n

Step 2: Installing<\/h3>\n\n\n\n

Chaincode must be installed once in each peer node so that it can be deployed to multiple channels if required. <\/p>\n\n\n\n

After installation, you receive a chaincode package identifier, which can be used to deploy the chaincode on the channel. You can later fetch this identifier by running the command peer lifecycle chaincode queryinstalled<\/strong><\/p>\n\n\n\n

Or run this command to install Chaincode<\/p>\n\n\n\n

composer network install -a device-network.bna -c PeerAdmin@multi_org1<\/code><\/pre>\n\n\n\n

Click this link<\/a> if you use chaincode as an external service. <\/p>\n\n\n\n

Step 3: Approval<\/h3>\n\n\n\n

Chaincode definition governs the chaincode, and when a channel member approves this definition, the approval acts as an organization’s vote, on the chaincode parameters it accepts. Before the chaincode can be used, channel members are allowed by the approved definitions to agree to the said chaincode. <\/p>\n\n\n\n

The command peer lifecycle chaincode<\/strong> queryinstalled<\/strong> can fetch the package identifier of the chaincode, and the command peer lifecycle chaincode approveformyorg<\/strong> will approve the definition. <\/p>\n\n\n\n

Step 4: Committing<\/h3>\n\n\n\n

One organization can commit the chaincode definition to the channel after enough number of channel members have approved it. You can use the peer CLI command checkcommitreadiness<\/strong> to check if there are enough approvals available and use the command peer lifecycle chaincode commit<\/strong> once enough approvals are available. <\/p>\n\n\n\n

Wrapping Up.<\/h2>\n\n\n\n

Collectively, we have covered all the crucial considerations and how to set up components for the Fabric network<\/a>. We hope this helps you get one step closer to getting your Fabric blockchain<\/a> network up and running. <\/p>\n\n\n\n

Speaking of blockchains, Zeeve<\/a> is a BaaS<\/a> or a blockchain as an infrastructure platform<\/a> that offers nodes, blazing fast APIs, and supports all major public and permissioned blockchain protocols<\/a>.\u00a0<\/p>\n\n\n\n

Reach out to our experts or book a free session today and follow Zeeve on social media<\/a>. <\/p>\n","protected":false},"excerpt":{"rendered":"

It is well-established that Hyperledger Fabric is the best open-source framework for private and permissioned blockchain networks. In the first part of this blog, we discussed all the crucial considerations before deploying the Hyperledger Fabric to the blockchain network, and in this (part 2) article, we will discuss how to set up components.  Starting with […]<\/p>\n","protected":false},"author":5,"featured_media":27170,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[109,174],"tags":[110],"acf":[],"yoast_head":"\nHow to Setup Components for the Hyperledger Fabric Blockchain Network?<\/title>\n<meta name=\"description\" content=\"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Setup Components for the Hyperledger Fabric Blockchain Network?\" \/>\n<meta property=\"og:description\" content=\"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\" \/>\n<meta property=\"og:site_name\" content=\"Blockchain Deployment and Management Platform | Zeeve\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-08T12:58:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-28T08:52:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"976\" \/>\n\t<meta property=\"og:image:height\" content=\"577\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ghan Vashishtha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@0xZeeve\" \/>\n<meta name=\"twitter:site\" content=\"@0xZeeve\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ghan Vashishtha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\"},\"author\":{\"name\":\"Ghan Vashishtha\",\"@id\":\"https:\/\/www.zeeve.io\/#\/schema\/person\/28595acb9ccec6d47857f472148b1d20\"},\"headline\":\"How to Setup Components for the Hyperledger Fabric Blockchain Network?\",\"datePublished\":\"2023-02-08T12:58:36+00:00\",\"dateModified\":\"2024-02-28T08:52:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\"},\"wordCount\":1253,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.zeeve.io\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png\",\"keywords\":[\"Hyperledger fabric\"],\"articleSection\":[\"Hyperledger Fabric\",\"Technical Guide\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\",\"url\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\",\"name\":\"How to Setup Components for the Hyperledger Fabric Blockchain Network?\",\"isPartOf\":{\"@id\":\"https:\/\/www.zeeve.io\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png\",\"datePublished\":\"2023-02-08T12:58:36+00:00\",\"dateModified\":\"2024-02-28T08:52:11+00:00\",\"description\":\"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage\",\"url\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png\",\"contentUrl\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png\",\"width\":976,\"height\":577,\"caption\":\"How to Setup Components for the Hyperledger Fabric Blockchain Network?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.zeeve.io\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Setup Components for the Hyperledger Fabric Blockchain Network?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.zeeve.io\/#website\",\"url\":\"https:\/\/www.zeeve.io\/\",\"name\":\"Blockchain Deployment and Management Platform | Zeeve\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.zeeve.io\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.zeeve.io\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.zeeve.io\/#organization\",\"name\":\"Zeeve Inc\",\"url\":\"https:\/\/www.zeeve.io\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.zeeve.io\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2024\/06\/IconBlackGreen-1.png\",\"contentUrl\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2024\/06\/IconBlackGreen-1.png\",\"width\":218,\"height\":216,\"caption\":\"Zeeve Inc\"},\"image\":{\"@id\":\"https:\/\/www.zeeve.io\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/0xZeeve\",\"https:\/\/www.linkedin.com\/company\/0xzeeve\/\",\"https:\/\/www.youtube.com\/channel\/UChZYRHpTkeGXeotR6LD7NUw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.zeeve.io\/#\/schema\/person\/28595acb9ccec6d47857f472148b1d20\",\"name\":\"Ghan Vashishtha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.zeeve.io\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2021\/10\/ghan-96x96.jpg\",\"contentUrl\":\"https:\/\/www.zeeve.io\/wp-content\/uploads\/2021\/10\/ghan-96x96.jpg\",\"caption\":\"Ghan Vashishtha\"},\"description\":\"He is the Co-Founder, CTO of Zeeve with more than a decade of expertise in niche industry sets including Telecommunication, Defense & Aerospace and Media & Broadcasting. He has been providing technology and innovation leadership, building strategic roadmap while building strong partnerships ecosystem He helps build early traction while driving cross technology vertical engagements.\",\"sameAs\":[\"https:\/\/www.zeeve.io\/\"],\"url\":\"https:\/\/www.zeeve.io\/author\/ghanzeeve-io\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Setup Components for the Hyperledger Fabric Blockchain Network?","description":"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/","og_locale":"en_US","og_type":"article","og_title":"How to Setup Components for the Hyperledger Fabric Blockchain Network?","og_description":"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!","og_url":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/","og_site_name":"Blockchain Deployment and Management Platform | Zeeve","article_published_time":"2023-02-08T12:58:36+00:00","article_modified_time":"2024-02-28T08:52:11+00:00","og_image":[{"width":976,"height":577,"url":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png","type":"image\/png"}],"author":"Ghan Vashishtha","twitter_card":"summary_large_image","twitter_creator":"@0xZeeve","twitter_site":"@0xZeeve","twitter_misc":{"Written by":"Ghan Vashishtha","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#article","isPartOf":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/"},"author":{"name":"Ghan Vashishtha","@id":"https:\/\/www.zeeve.io\/#\/schema\/person\/28595acb9ccec6d47857f472148b1d20"},"headline":"How to Setup Components for the Hyperledger Fabric Blockchain Network?","datePublished":"2023-02-08T12:58:36+00:00","dateModified":"2024-02-28T08:52:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/"},"wordCount":1253,"commentCount":0,"publisher":{"@id":"https:\/\/www.zeeve.io\/#organization"},"image":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage"},"thumbnailUrl":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png","keywords":["Hyperledger fabric"],"articleSection":["Hyperledger Fabric","Technical Guide"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/","url":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/","name":"How to Setup Components for the Hyperledger Fabric Blockchain Network?","isPartOf":{"@id":"https:\/\/www.zeeve.io\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage"},"image":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage"},"thumbnailUrl":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png","datePublished":"2023-02-08T12:58:36+00:00","dateModified":"2024-02-28T08:52:11+00:00","description":"Learn the steps to setup components for a Hyperledger Fabric blockchain network. This guide breaks down the process into simple steps and explains each component, including validating peers, ordering services, and more. Get started building your own blockchain network today!","breadcrumb":{"@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#primaryimage","url":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png","contentUrl":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2023\/02\/hyperledger-fabric-1.png","width":976,"height":577,"caption":"How to Setup Components for the Hyperledger Fabric Blockchain Network?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.zeeve.io\/blog\/how-to-setup-components-for-the-hyperledger-fabric-blockchain-network\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.zeeve.io\/"},{"@type":"ListItem","position":2,"name":"How to Setup Components for the Hyperledger Fabric Blockchain Network?"}]},{"@type":"WebSite","@id":"https:\/\/www.zeeve.io\/#website","url":"https:\/\/www.zeeve.io\/","name":"Blockchain Deployment and Management Platform | Zeeve","description":"","publisher":{"@id":"https:\/\/www.zeeve.io\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.zeeve.io\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.zeeve.io\/#organization","name":"Zeeve Inc","url":"https:\/\/www.zeeve.io\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zeeve.io\/#\/schema\/logo\/image\/","url":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2024\/06\/IconBlackGreen-1.png","contentUrl":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2024\/06\/IconBlackGreen-1.png","width":218,"height":216,"caption":"Zeeve Inc"},"image":{"@id":"https:\/\/www.zeeve.io\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/0xZeeve","https:\/\/www.linkedin.com\/company\/0xzeeve\/","https:\/\/www.youtube.com\/channel\/UChZYRHpTkeGXeotR6LD7NUw"]},{"@type":"Person","@id":"https:\/\/www.zeeve.io\/#\/schema\/person\/28595acb9ccec6d47857f472148b1d20","name":"Ghan Vashishtha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zeeve.io\/#\/schema\/person\/image\/","url":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2021\/10\/ghan-96x96.jpg","contentUrl":"https:\/\/www.zeeve.io\/wp-content\/uploads\/2021\/10\/ghan-96x96.jpg","caption":"Ghan Vashishtha"},"description":"He is the Co-Founder, CTO of Zeeve with more than a decade of expertise in niche industry sets including Telecommunication, Defense & Aerospace and Media & Broadcasting. He has been providing technology and innovation leadership, building strategic roadmap while building strong partnerships ecosystem He helps build early traction while driving cross technology vertical engagements.","sameAs":["https:\/\/www.zeeve.io\/"],"url":"https:\/\/www.zeeve.io\/author\/ghanzeeve-io\/"}]}},"_links":{"self":[{"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/posts\/27168"}],"collection":[{"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/comments?post=27168"}],"version-history":[{"count":1,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/posts\/27168\/revisions"}],"predecessor-version":[{"id":60923,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/posts\/27168\/revisions\/60923"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/media\/27170"}],"wp:attachment":[{"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/media?parent=27168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/categories?post=27168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zeeve.io\/wp-json\/wp\/v2\/tags?post=27168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}