Hello,
I have 3 servers; A,B and C. Server A and B are production servers while C is a purely a backup server. Both A and B have sanoid running on them. Every night server A and B transfer their datasets to each other.
The syncoid commands are always initiated from server A like so
#syncoid -r tank/datasetA root@serverB:tank/backupA/datasetA
#syncoid -r root@serverB:tank/datasetB tank:/backupB/datasetB
The backups are running fine. Now i want to introduce a third server C to backup both server A and B. I guess we dont need sanoid on server C. However as before i want to initiate syncoid from server A. Should i be using --no-sync-snap like so:
#syncoid -r tank/datasetA --no-sync-snap --delete-target-snapshots root@serverC:tank/backupA/datasetA
#syncoid -r tank:/backupB/datasetB --no-sync-snap --delete-target-snapshots root@serverC:tank/backupB/datasetB
I am not sure if i need to use ‘–identifier’ option. My aim is to not to get any warnings of unknown datasets when doing these syncoid transfers.