We have a primary VM (VM1) and a secondary VM (VM2). If VM1 is not working then VM2 takes over.
We store files on VM1 and would like to be able replicate all files on VM2. There is of course the added problem of synchronization when either of the VMs are not running.
When something is written on VM1, it should also be written on VM2. If VM2 is not available then a note should be made for the specific files to be copied when VM2 is available. Something similar would happen if we delete a file.
We do not use Blob storage for the time being.
Is there a tool which can handle the synchronization or do we have to create one?
John