Reputation: 109
I have been exploring blockchain technologies for a while now. I have worked in particular with hyperledger, ethereum and quorum. Through all of these i was able to set up a test blockchain with mock local accounts. How would I be able to set up a blockchain on my local LAN ? with possibly 13 computers as participants ?
Any good starting points ?
Upvotes: 0
Views: 1311
Reputation: 71
You can set up a private ethereum network in your LAN by the using the following steps
Once set up, you can create accounts on any of the nodes as per your use case.
Refer to the following links for creating a private network using boot node
https://github.com/ethereum/go-ethereum/wiki/Private-network
https://github.com/ethereum/go-ethereum/wiki/Setting-up-private-network-or-local-cluster
There is also a good document on Dzone for creating private ethereum network: https://dzone.com/refcardz/getting-started-with-etherium-private-blockchain?chapter=1
Upvotes: 2