Programmatically syncing with remote servers
Posted
by
Joseph
on Programmers
See other posts from Programmers
or by Joseph
Published on 2014-05-08T05:28:16Z
Indexed on
2014/06/07
9:36 UTC
Read the original article
Hit count: 305
node.js
|synchronization
My application generates text files that need to be synced with remote servers, which may be windows or linux. Sync has to happen without user's intervention.
I tried with rsync but windows doesn't come with rsync by default. Also it is not possible to supply password in the command line for rsync.
Currently I'm going with ftp. But that seems like an inefficient way.
Is there a way to rsync without user intervention? What are the ways to sync with a remote server programmatically? App is on nodejs.
© Programmers or respective owner