Validator Migration
Safe Migration: Moving Your Validator to a New Server (Qubetics Chain)
Prepare the New Server (Node B) Set up Node B and fully sync it to the latest block height using:
https://github.com/Qubetics/qubetics-mainnetnode-script Confirm that Node B is fully synced and responsive.
Stop the Old Validator (Node A) On Node A, run:
sudo systemctl stop qubeticschain.service
Confirm the validator process has completely stopped.
sudo systemctl status qubeticschain.service
Transfer Validator Key Locate and display the key on Node A
sudo cat /data/.tmp-qubeticsd/config/priv_validator_key.json
Copy the file securely from Node A.
Deploy the Key on Node B
Replace it into the same path on Node B:
sudo nano /data/.tmp-qubeticsd/config/priv_validator_key.json
Save your changes.
Start Validator on Node B Launch the validator:
sudo systemctl restart qubeticschain.service
Use the Qubetics explorer (e.g., [TICSScan uptime page]) to confirm that the validator is signing blocks again.
Decommission Old Node Once Node B is live and stable, safely shut down or repurpose Node A.
Last updated