DEV Community

RAHUL DHOLE
RAHUL DHOLE

Posted on

Proxmox Recovery

After a reboot of the pvedaemon and webgui everything crashed and after starting webui somehow in the process, I deleted the config.db and .conf files were lost I don't know how.
The best solution I found was to reset proxmox copy network config and VM dump files into the root (local), which I will discuss here.

root/var/lib/vz/dump/
Enter fullscreen mode Exit fullscreen mode

and restore the VMs.

If needed to recover data from root or old VM disks (which is a proxmox's logical partitions for each VM)

  1. Connect proxmox SSD to a Linux PC
  2. install lvm2 pkg
sudo apt-get install lvm2
sudo pvscan
sudo vgchange -ay
sudo lvdisplay
sudo mount /dev/YourVolumeGroup/YourLogicalVolume /mnt/usb
Enter fullscreen mode Exit fullscreen mode

Top comments (0)