-1

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

  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Nov 11 '21 at 03:23

1 Answers1

1

As the name Solo implies, 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).

david_k
  • 5,843
  • 2
  • 9
  • 16