I have setup a hyperledger fabric network with 1 orderer node, but i want to know how to add new orderer node to a running production hyperledger network using Solo conesuss algorithm
How can I add new orderNode on running hyperLedgerFabric?
44 Views Asked by Aya Elhawary At
1
There are 1 best solutions below
Related Questions in HYPERLEDGER-FABRIC
- Error during Hyperledger Composer network install: npm ERR! command failed with node-gyp rebuild
- Backup and restoring Hyperledger fabric network one instance to other instanc
- hyperledger fabric can we intergrate existing database into a blockchain network and how?
- Accessing Fabric CA Server with REST API (Authentication Error)
- Learning Hyperledger Fabric & setting up a simple network. Stuck on an error while trying to regenerate the channel configuration transaction
- HyperLedger fabric error during the channel creation
- Im using hyperledger fabric, and im receiving a non-zero return code for when i try to run 'run the orderer raft leader election script'
- Setting up gRPC Proxies for HLF Operator Operations Console
- Error: Failed to get client TLS config: Error parsing certificate: x509: malformed serial number
- Facing slowness in Channel sync Operation in Hyperledger Fabric v2.2
- failed client connection to minifabric blockchain
- Hyperledger & OpenTelemetry: "GrpcExporter : Failed to export metrics" Failed to connect to localhost
- committed with status (ENDORSEMENT_POLICY_FAILURE) at peer1.org1.com:7051
- Hyperledger Fabric CA Certificate Error with Fabric Samples deployment
- How to manage dynamic data format in hyperledger
Related Questions in IBM-BLOCKCHAIN
- hyperledger fabric can we intergrate existing database into a blockchain network and how?
- Can I run code for IBM blockchain platform on AWS Blockchain Manager
- Orderers not responding after upgrading version from v2.4.4 to v2.5 in Hyperledger Fabric network
- Add new channel to existing Hyperledger Fabric network
- Error Connecting to 2 Org Local Fabric With IBM Blockchain Platform
- ibm blockchain platform [[{ code: 71, message: 'Authorization failure' }]]
- Can I use pbft with Hyperledger Fabric 2.x?
- Certificate signed by unknown authority Hyperledger Fabric
- Problem communicating Nodejs (Docker) with hydperledger
- Hyperledger Fabric Smart Contract with private data works in vscode but not in external app. How can I write data to multiple implicit collections?
- Building Network Layer in Hyperledger Fabric
- Not able to implement chaincode on peers
- Hyperledger fabric parent-CA certificate renewal
- 'msbuild' is not recognized as an internal or external command, operable program or batch file. error
- Does committing peer sign the new block using private key to produce new block in Hyperledger Fabric?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As the name
Soloimplies, it's a single entity so you can't add another ordering node. You would never use Solo for production either. You should use raft which can have multiple ordering nodes (but you need to understand the implications of multiple ordering nodes using raft so definitely refer to the hyperledger fabric documentation).