Hello everyone,
my intention is to back up the configuration of a Proxmox cluster from /etc and /etc/pve, transfer this configuration to a new cluster, and then rejoin it to the main cluster.
I'm experiencing an issue while restoring a Proxmox cluster with the same hostname and IP after a reinstallation. Here are the steps I've followed so far:
1. Reinstalled Proxmox with the same hostname and IP as the original cluster.
2. Transferred backup files to the server:
4. Moved the extracted directories to their respective locations:
5. Ensured correct permissions:
6. Restarted relevant services:
However, I encounter the following error when starting `pve-cluster`:
The file permissions are:
Can someone help me resolve this issue without regenerating the SSL keys?
Thanks in advance for your assistance.
my intention is to back up the configuration of a Proxmox cluster from /etc and /etc/pve, transfer this configuration to a new cluster, and then rejoin it to the main cluster.
I'm experiencing an issue while restoring a Proxmox cluster with the same hostname and IP after a reinstallation. Here are the steps I've followed so far:
1. Reinstalled Proxmox with the same hostname and IP as the original cluster.
2. Transferred backup files to the server:
3. Decompressed the backup files:- `catalog.pcat1.didx`
- `etc.pxar.didx`
- `index.json.blob`
- `pve.pxar.didx`
Bash:
mkdir etc pve
zstd -d /var/lib/vz/dump/etc.pxar.didx -o /var/lib/vz/dump/etc.tar
tar -xf /var/lib/vz/dump/etc.tar -C /var/lib/vz/dump/etc
zstd -d /var/lib/vz/dump/pve.pxar.didx -o /var/lib/vz/dump/pve.tar
tar -xf /var/lib/vz/dump/pve.tar -C /var/lib/vz/dump/pve
4. Moved the extracted directories to their respective locations:
Bash:
mv /var/lib/vz/dump/pve /etc/pve
mv /var/lib/vz/dump/etc /etc
5. Ensured correct permissions:
Bash:
chown -R root:root /etc/pve
chmod 600 /var/lib/pve-cluster/config.db
6. Restarted relevant services:
Bash:
systemctl restart pve-cluster
systemctl restart pvedaemon
systemctl restart pveproxy
However, I encounter the following error when starting `pve-cluster`:
/etc/pve/local/pve-ssl.key : failed to load local private key at /usr/share/perl5/PVE/APIServer/AnyEvent.pm line 1996
The file permissions are:
-rw-r----- 1 root root 1675 Aug 31 2023 /etc/pve/local/pve-ssl.key
Can someone help me resolve this issue without regenerating the SSL keys?
Thanks in advance for your assistance.
Last edited: