-
Notifications
You must be signed in to change notification settings - Fork 88
Setting up a private network
If you consider setting up Ethereum private network with Harmony as nodes, this part of documentation will guide you through it. We'll overview 2 configurations: simple one, with only one support node, call it "Minimal configuration", and "Recommended configuration" with 2 seed nodes, 2 miners and any number of regular nodes. Most steps are common for any setup but there are few differences if you want to run network for simple experiments with small resources or require better stability and scalability. Just follow instructions step-by-step:
Install Ethereum Harmony on all nodes.
Ethereum Harmony uses EterheumJ library and requires Java 8. To get latest version of the tool, git clone it
git clone git@github.com:ether-camp/ethereum-harmony.git
cd ethereum-harmony
For more information about Harmony installation check README.
We'll start configuration from genesis. Genesis is the first block in your future network and it should be the same on all nodes.
Typical genesis file looks like this
{
"nonce": "0x00006d6f7264656e",
"difficulty": "0x000002",
"mixhash": "0x00000000000000000000000000000000000000647572616c65787365646c6578",
"coinbase": "0x0000000000000000000000000000000000000000",
"timestamp": "0x00",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"extraData": "0x",
"gasLimit": "0x2FEFD8",
"alloc": {
"cd2a3d9f938e13cd947ec05abc7fe734df8dd826": { "balance": "10000000000000000" }
}
}
You could find it in distribution: frontier-private.json
Most values are in hexadecimal format, except balance. Balance values are in WEI, smallest Ethereum coin, stored in decimal units. What you should notice or change in genesis:
- difficulty - keep this number low enough, so you'll not spend a lot of machine power on new blocks. Default value is good for it.
- alloc - it's a part of genesis block, where you could predefine addresses with some ether balance just from the beginning of network run. Note, that you need private key or seed phrase to execute transactions from addresses you add there.
Example allocates some funds to address with private key "cow". You could add it later on any node with "Import Address" dialog in "Wallet" section of Harmony and transfer money from it using this key. If you want to restrict access to ether, you could use "New mnemonic address" feature while running Harmony on any network, add one address, copy it to alloc section and use such genesis in your future private network.
Once your nodes get first block after genesis, you will not be able to change it without removing DB on these nodes and removing old blockchain. And all your nodes should use the same genesis. So make sure you have the same file on all nodes.
Node configuration depends on node role in network but most parts are common for all roles in one private network.
You could find private network example configuration in repository: private.conf.
When Harmony starts, configuration file is merged with EterheumJ configuration, so if you want to know all configuration options and their default values, take a look at ethereumj.conf
You should have following options in your config:
# Network id
peer.networkId = 365
Network Id. Use any number greater than 2, same for all nodes. 1 and 2 are already used in Live and Morden networks.
peer.discovery.enabled = true
Enable peer discovery for p2p exchange between all your nodes
peer.listen.port = 30303
Incoming connections listening port. You could later override it from command line.
database.reset = false
If you want to keep your blockchain after peer restart, turn database reset off.
# Key value data source values: [leveldb/redis/mapdb]
keyvalue.datasource=leveldb
LevelDB is generally more stable than MapDB. Use Redis for high-load applications.
blockchain.config.name = null
blockchain.config.class = "org.ethereum.config.blockchain.FrontierConfig"
Use either "org.ethereum.config.blockchain.FrontierConfig" or "org.ethereum.config.blockchain.HomesteadConfig". For private network you could use any of them but it should be the same on all nodes.
All improvements in Homestead are described in official Ethereum documentation.
These changes are made for public network and affects mostly gas spendings and fixes potential vulnerabilities. So if you don't care about gas expense and your network is private, you will not see much difference.
Other options you may need to change depends on your network structure and node roles.
Choose either minimal or recommended configuration. Minimal requires one base network node but Recommended is close by configuration and stability to real networks.
Pros: 1 base node and any number of regular nodes
Cons: If base node is down, private network is down too
sync.enabled = false
mine.start = true
cache.flush.blocks = 1
You have 1 mine node in network, so nobody could create blocks in network excluding this node. To keep its DB up-to-date, flush it on every block. But if you later add another mining node in network, keeping the same configuration, your mining nodes could start to produce wrong blocks. So it's safer to turn sync on
sync.enabled = true
This change in configuration requires manual start of mining from Harmony Terminal after start and each restart using miner_start
command:
node> miner_start
true
Please note: with default settings on first run miner starts to building Mining DataSet which may take up to 10 minutes, so don't expect new blocks immediately after mining start.
sync.enabled = true
You need to enable sync on your regular node, so its DB will be up-to-date.
Then you need to get Seed/Miner node info and fill it in active peer section of all regular nodes like this:
peer.active = [
{
ip = 207.12.89.101
port = 30303
nodeId = e437a4836b77ad9d9ffe73ee782ef2614e6d8370fcf62191a6e488276e23717147073a7ce0b444d485fff5a0c34c4577251a7a990cf80d8542e21b95aa8c5e6c
nodeName = "my poc-9-peer-1"
},
]
To get nodeId of your seed node, start it, open Harmony Terminal and type admin_nodeInfo
command:
node> admin_nodeInfo
{
"enode": "enode://70c0c9a5c4d6ae4c7a6e4b8d2acd07f747827e7ea55ac47a7b4b7de561d3bdcae00596dabc0defd842d27b
48097214b641db3e0f55ffa3f46b2e7ae265a6931b@192.168.1.40:10101",
"listenAddr": "192.168.1.40:10101",
"ip": "192.168.1.40",
"name": "EthereumJ/v1.3.6/Mac OS X/Java1.7/RELEASE-0e76829",
"id": "70c0c9a5c4d6ae4c7a6e4b8d2acd07f747827e7ea55ac47a7b4b7de561d3bdcae00596dabc0defd842d27b48097214b64
1db3e0f55ffa3f46b2e7ae265a6931b",
"ports": {
"discovery": 10101,
"listener": 10101
},
"protocols": {
"eth": {
"network": 365,
"difficulty": "0xa7310ae",
"genesis": "0x27862782907a78d975cc5f139d888c746b01acc2270c8be149a7154e55ea9f65",
"head": "0x6c9ea6dd7a3f9f789f049392948eef479991c934b36e1cdf69d1086576f07c4b"
}
}
}
id
parameter is what you need. If you delete DB on seed node, it will be generated again. If you restart node it will not be changed if your DB reset option is off. To stick it you could hardcode private key in seed config:
# Private key of the peer
# The key is generated by default on the first run and stored in the database folder
# If you have your own peer ID, specify its private key here
peer.privateKey = f67c4032a7ff79bbfa7a780331b235c4eb681d51a0704cb1562064fb6c4bced4
Where privateKey is 64-chars hex.
Pros: Stable and scalable, when one seed or one miner is down, private network keeps running Cons: Requires more resources than Minimal Configuration
sync.enabled = true
All you need is just make sure you have sync enabled.
sync.enabled = true
mine.start = true
You have several miners now and you are required to keep synchronization between them. You should start mining process by running command miner_start
in Harmony Terminal. Other miners will automatically break in. If you restart any miner, but not the all miners simultaneously, you are not required to manually start mining process.
Please note: with default settings on first run miner starts to building Mining DataSet which may take up to 10 minutes, so don't expect new blocks immediately after mining start.
Enable sync in config:
sync.enabled = true
And add seed nodes as active peers in config, the same way you do with Minimal Configuration, but for 2 seed nodes. Please refer to Regular node configuration in Minimal Configuration part.
In such configuration you could restart or swap any node without downtime for whole network. You can add new seed nodes and new miners. This configuration is very similar to real network.
Now you have several nodes, same genesis file for all of them, their role-specific configuration, so you could start all nodes.
Launch Harmony with following command:
gradlew bootRun -Dethereumj.conf.file=ABS_PATH_TO/private-configuration.conf -DgenesisFile=ABS_PATH_TO/private-genesis.json
Start with seed and miner nodes and after that you could add regular nodes to your network. When mining starts (takes up to 10 minutes on first run, much faster after miner restart), you could create contracts, invoke them and send funds like in real network.
By default, Harmony will keep database at user home location at ~/ethereumj/database. To change that location you need to run with:
-Ddatabase.dir="~/ethereumj/PATH_TO_DATABASE"
Default ports are:
- 30303 for peer. Use
-Dpeer.listen.port=33333
to change it - 8080 for web interface and JSON RPC. Use
-Dserver.port=8888
to change it