Setting up a 4-node Service Chain
This section covers how to set up a multi-node service chain. To tolerate byzantine faults, at least four nodes are required. We will set up a 4-consensus-node service chain.
Prerequisites
Download packages for
kscn
,homi
binary from Download.4 Linux or MacOS servers
Minimum hardware requirements
CPU: 4-core (Intel Xeon or equivalent), RAM: 16GB, HDD: 50GB
Please refer to the System Requirements for more explanation.
Step 0: Install SCN on all nodes
The installation is the uncompression of the downloaded package. Extract the SCN archive on each server.
For the convenience, we will add the binary path to $PATH. Use the actual path on your node.
Step 1: Create genesis.json and nodekeys
We will use homi utility to generate the needful files. You can execute homi from any Linux/Mac PC.
First, extract the homi archive you downloaded.
Go to the bin
folder and execute homi
with following options to generate the files. homi setup local --cn-num 4 --test-num 1 --servicechain --p2p-port 30000 -o homi-output
Among the outputs, we will use nodeky*
, genesis.json
and static-nodes.json
in the subsequent steps.
Step 2: Customize static-nodes.json
Open homi-output/scripts/static-nodes.json
in a text editor then update the IP addresses and ports with the actual values of your nodes. Note the port you assigned here, the value will be used later in step 4.
After you update static-nodes.json
, upload the output folders to all SCNs.
Step 3: Node initialization
Now, we will initialize each node using the genesis file. On each node, execute the following command. It will create the data folder storing the chain data and logs on your home directory.
You can change the data folder using the --datadir
directive.
Step 4: Install nodekey
and static-nodes.json
nodekey
and static-nodes.json
On every SCNs, copy static-nodes.json
to the data folder.
In step 1, we generated 4 nodekeys. Assign each node key to the SCN and copy the matching nodekey to each SCN's data folder. For example, use nodekey1 for 192.168.0.1 node and use nodekey 2, 3 and 4 for 192.168.0.2, 192.168.0.3 and 192.168.0.4 respectively.
Step 5: Configure nodes
On every SCNs, go to the kscn installation folder and edit conf/kscnd.conf
as follows.
Step 6: Start nodes
Execute the following command on all SCN nodes.
You can check block generation status by watching klay.blockNumber
. If this number is not 0, the node is working fine.
If you want to stop a node, you can use the command kscnd stop
(Example) Creation and confirmation of a value transfer transaction
Now the 4-node service chain is running up. We will execute a value transfer transaction in the service chain to confirm the installation.
Step 1: Import the test account
testkey1
was automatically generated by homi
in step 1. KLAY is allocated to the test account as described in the genesis.json
which was also generated by homi
Step 2: Unlock the account
Step 3: Send a transaction and check the balance
Last updated