Dear members
I am using proxmox backup client to create filesystem backups in the proxmox backup server. These backups are ot type 'host' and creating them seems to work without errors (at least, I can't find any in the server's syslog).
Here is the command I use to create a backup:
As you can see, I run the backup client in a container (Debian bookworm) since I need to backup files on an Rocky Linux 9 server.
In the backup on the backup server, I then see there files:
In here, there is no file
Note: I need to mount
The command results in this error:
As you can see, it tries to access
Any idea what I am doing wrong?
Many thanks in advance and kind regards,
Pascal
I am using proxmox backup client to create filesystem backups in the proxmox backup server. These backups are ot type 'host' and creating them seems to work without errors (at least, I can't find any in the server's syslog).
Here is the command I use to create a backup:
Bash:
podman run --rm --volume /data/podman/paperless-ngx:/data:ro --name pbsclient pbsclient proxmox-backup-client backup --backup-id=cnt01-paperless --change-detection-mode=metadata --backup-type host paperlss.pxar:/data
As you can see, I run the backup client in a container (Debian bookworm) since I need to backup files on an Rocky Linux 9 server.
In the backup on the backup server, I then see there files:
Code:
host/cnt01-paperless
|
+---- host/cnt01-paperless/2024-07-06T04:36:17Z
|
+---- index.json.blob
+---- paperless.mpxar.didx
+---- paperless.ppxar.didx
In here, there is no file
catalog.pcat1.didx
. But when I try to list the backup's contents, I get an error. Here is how I try to list the contents:
Bash:
podman run --rm --volume /tmp:/tmp --name pbsclient pbsclient proxmox-backup-client catalog dump host/cnt01-paperless/2024-07-06T04:36:17Z
Note: I need to mount
/tmp
in the container since this backup client command requires access to /tmp
.The command results in this error:
Code:
Error: Unable to open dynamic index "/mnt/datastore/pbs-backup-ssd/host/cnt01-paperless/2024-07-06T04:36:17Z/catalog.pcat1.didx" - No such file or directory (os error 2)
As you can see, it tries to access
catalog.pcat1.didx
which isn't created by the backup.Any idea what I am doing wrong?
Many thanks in advance and kind regards,
Pascal