Error opening pool ledger connection
I Have two instances (instance A and instance B) both are Ubuntu 20.04. I am trying to connect the Instance A node to Instance B using the Genesis file. when I try to connect. This error occurred.
Error opening pool ledger connection
I am using this command to start GENESIS_URL=file:///home/ubuntu/genises/genesis.txt LEDGER_SEED=000000000000000000000000SomeSeed PORT=9000 python -m server.server
Can you provide some details on your use case?
von-network was designed as a provisional ledger for development and testing purposes. It is not designed to be used in a production scenario. The Setting up a New Network documentation will give you a better idea of how a network is formed. von-network automates the genesis process and that process has been designed to connect four nodes together that are running on the same machine.
The GENESIS_URL option in von-network is only designed to connect the web server (ledger browser) to a remote network, it is not meant to be used to inject a genesis file into the nodes for initialization.
Options for a provisional (e.g. local/remote dev/test) indy-node network: https://github.com/bcgov/von-network
Options for hosted, managed, and fully distributed indy-node networks (dev, test, and prod):
- https://sovrin.org/
- https://indicio.tech/
Options for setting up your own production level indy-node network:
https://github.com/hyperledger/indy-node/blob/ubuntu-16.04/docs/source/NewNetwork/NewNetwork.md
- Describes how to setup a new network from scratch (on Ubuntu 16.04). Regardless of the approach you ultimately decide to take, you should read through this documentation to understand how the network is initiated and how nodes are added afterward.
- Docs for installing indy-node on Ubuntu 20.04 are being developed here; https://github.com/hyperledger/indy-node/pull/1814
Terraform and Ansible scripts for setting up an indy node in AWS https://github.com/ICCS-ISAC/Candy
- These are based on the documentation above.
- Supports provisioning and installation of indy-indy on Ubuntu 20.04.
https://github.com/hyperledger/indy-node-container
- A project focusing on running indy-node in containers.