Run A Validator

We assume you have already created the Keystore file for your validator account following the previous section. You can run your validator node with the following command:

geth --datadir /data/.kcc \
    --unlock 0x0000000000000000000000000000000000000000 \
    --password /data/.kcc/pass --mine 

If you want to enable the HTTP and Websocket RPC servers on your validator node, you should never make them publicly accessible! Because that would make your validator account accessible through the RPC requests.

Last updated