♻️Backup/Restore a P12 KeyStore
🔐Backup P12 Keystore File
Maintaining an up-to-date and secure backup of your .p12 file is essential for protecting access to your Validator node and wallet. This guide will walk you through securely backing up and restoring your .p12 file using a macOS or Windows system.
Determine Cold Storage Medium
What and Why Cold Storage?
Cold storage refers to keeping your .p12 file offline, minimizing exposure to unauthorized access or system vulnerabilities. Acceptable storage methods include:
Encrypted USB drives
Hardware wallets with secure storage
Air-gapped systems
Secured Encrypted Software Vaults
Start SFTP Session to Your Validator Node
Replace values with your actual SSH key and node IP address:
sftp -i ~/.ssh/my-node-ssh-keyname [email protected]You'll be prompted to enter your SSH key passphrase.
cd ~/constellation-backups
rm -f my-p12file.p12cd ~/constellation-backup
rm my-p12file.p12🔄 Restore P12 Keystore File
Transfer p12 keystore to local system
Copy your backed-up p12 keystore file to your local Macintosh or Windows system.
mkdir ~/constellation-backup
cp /Volumes/ColdStorage/my-p12file.p12 ~/constellation-backup/
cd ~/constellation-backup
ls -lConnect your backup device or connect to your backup medium to your Windows 11 system.
Use File Explorer to copy the file into your constellation backup directory under your local user's home directory.
constellation-backup
Verify that you see your p12 file listed.
Connect to Your Node via SFTP
sftp -i ~/.ssh/my-node-ssh-keyname [email protected]Last updated
Was this helpful?