Continuous asynch file replication in linux?
-
Use systemd to monitor directories and files
https://www.putorius.net/systemd-path-units.htmlSyncthing
https://syncthing.net/
-
I would say:
lsyncd for user mode, simple, rsync based solution: https://github.com/axkibe/lsyncd
csync2 for multi-host synchronization with conflict detection: https://github.com/LINBIT/csync2
MARS for a kernel side solution (DRBD alternative): http://schoebel.github.io/mars/ -
@DustinB3403 said in Continuous asynch file replication in linux?:
DRBD comes to mind.
That's the standard.
-
@DustinB3403 said in Continuous asynch file replication in linux?:
Isn't rsync async by design?
Yes. Rsync can't do full sync, only async. But it's not automatic.
-
@black3dynamite said in Continuous asynch file replication in linux?:
Use systemd to monitor directories and files
https://www.putorius.net/systemd-path-units.htmlSyncthing
https://syncthing.net/
This is probably the best option.
-
@scottalanmiller
Is it for asynchronous replication? I know it is for synchronous. -
@dave_c said in Continuous asynch file replication in linux?:
@scottalanmiller
Is it for asynchronous replication? I know it is for synchronous.Which tool?
-
@scottalanmiller said in Continuous asynch file replication in linux?:
@dave_c said in Continuous asynch file replication in linux?:
@scottalanmiller
Is it for asynchronous replication? I know it is for synchronous.Which tool?
DRBD as the standard asynchronous replication option for Linux -
@dave_c said in Continuous asynch file replication in linux?:
@scottalanmiller said in Continuous asynch file replication in linux?:
@dave_c said in Continuous asynch file replication in linux?:
@scottalanmiller
Is it for asynchronous replication? I know it is for synchronous.Which tool?
DRBD as the standard asynchronous replication option for LinuxDRBD is both sync and async. Most uses of it are async.
-
@scottalanmiller
Thanks for the clarification