♻️Backup/Restore a P12 KeyStore
Table of Contents
🔐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.
1
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
4
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.
5
6
8
10
11
cd ~/constellation-backups
rm -f my-p12file.p12
🔄 Restore P12 Keystore File
Last updated
Was this helpful?