What's the path of replicated disks and volumes?

bea

Active Member
Dec 25, 2020
68
7
28
25
Hello.

I have a cluster with no shared storage. I have configured replication.

If a node fails, I am supposed to manually migrate the already replicated guests through the CLI following these instructions:
https://pve.proxmox.com/pve-docs/chapter-pvesr.html#_migrating_a_guest_in_case_of_error

Before bringing any replicated disk online, I would like to know its modification date, however I see the "Date" column for both CT Volumes and VM Disks completely empty, it shows no value.

Why is it empty? How can I check the date of replicated disks?

Thank you
 
Last edited:
This is what I mean:

2025-04-11_18-07.png

As dates are not shown on the web, I would like to check them through terminal. What's the path of those replicated disks and volumes?

Thank you
 
You will have to look with the ZFS tools when the last successful replication happened by checking what the last snapshot is. Since this is the local-zfs, the pool and sub dataset in which the virtual disks reside is rpool/data.

To list all snapshots in the location, run
Code:
zfs list -t snapshot -r rpool/data

Or you could also fetch the "creation" property for each snapshot:
Code:
zfs get creation -r rpool/data
 
  • Like
Reactions: bea