Join our
Discord!
LogoLogo
SupraScan ExplorerStarKey WalletDiscord
Node Operator
  • Network
  • Oracles
  • Automation
  • SupraNova
  • AI Agents
Node Operator
  • Overview
  • Node Operator FAQ
  • Node Setup Guide
  • Node Upgrade Guide
    • Upgrade Checklist (Pre-Upgrade Verification)
    • Download the Node Management Scripts
    • Update the Supra Node Docker Image
    • Validator Migration to 9.0.12
    • RPC Migration to 9.0.12
    • Starting the Supra Node
    • Monitor Node Synchronization
    • CLI Improvements
    • Recovery Guide
  • Node Relocation Guide
    • Summary
    • Step 1
    • Step 2
    • Step 3
    • Step 4
    • Step 5
    • Step 6
    • Step 7
    • Step 8
  • Creating SupraDesk Tickets via Email
Powered by GitBook

Links

  • Whitepapers
  • Bug Bounty
  • Security Audits

‎

  • Supra Dev Hub
  • Supra Labs Github
  • Entropy Foundation Github
On this page
Edit on GitHub
  1. Node Relocation Guide

Step 1

Generate and Store the SSH Key

Generate an SSH Key Pair on the Old Instance:

  • Run the following command on the old instance to generate an SSH key pair (if it doesn’t already exist) on the new instance.

ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa -C "[email protected]"
  • Copy the SSH Public Key to the New Instance:

Use the following command to transfer the public key to the new instance.

ssh-copy-id -i ~/.ssh/id_rsa.pub username@new_instance_ip
  • Remove the Public Key from the New Instance (Post-Termination of Old Node):

  1. Once the old instance is terminated, remove its public key from the authorized_keys file on the new instance to revoke access.

  2. Delete the corresponding key entry and save the file.

PreviousSummaryNextStep 2