Copy of Recovering

Let's analyze what files are required to successfully transfer the node to another server.

  1. Validator account secret Mnemonic phrase. Save+Delete. The address: $HOME/.axelar_testnet/validator.txt

  2. The priv_validator_key.json file. DO NOT DELETE. It is located at: $HOME/.axelar_testnet/.core/config/priv_validator_key.json

  3. The node_key.json file. DO NOT DELETE. It is most likely located at: $HOME/.axelar_testnet/.core/config/node_key.json

  4. Broadcaster account secret mnemonic. Сохранить+Удалить. По адресу: $HOME/.axelar_testnet/broadcaster.txt

  5. Tofnd secret mnemonic. Сохранить+Удалить. А так же пароль к нему. $HOME/.axelar_testnet/.tofnd/import

Where 1,2,3 - we received during the initial installation when entering the script: KEYRING_PASSWORD='my-secret-password' ./scripts/node.sh -a v0.13.6

4,5 - Received while running the script: KEYRING_PASSWORD='my-secret-password' TOFND_PASSWORD='my-tofnd-password' ./scripts/validator-tools-host.sh

Recovering a node

Step by step guide will be published later.

In general terms, the sequence is:

  1. On the new server, install everything you need and start synchronization.

  2. We restore the wallet according to the mnemonic phrase: axelard keys add $NICKNAME --recover

  3. Waiting for the complete synchronization of the new node.

  4. Stopping the old node.

  5. If you did init on a new node, then in the folder $HOME/config/.axelar_testnet/.core/config/ replace 2 files: priv_validator_key.json and node_key.json (take them from the old node).

  6. Restart the node on the new server.

Last updated