Difference between revisions of "Talk:Rsyncd setup on a windows computer for use with Affa backup"

From SME Server
Jump to navigationJump to search
(Undo revision 9847 by Mmccarn (Talk))
Line 12: Line 12:
 
  --desc "Starts a rsync daemon for accepting incoming rsync connections" \
 
  --desc "Starts a rsync daemon for accepting incoming rsync connections" \
 
  --disp "Rsync Daemon" --type auto
 
  --disp "Rsync Daemon" --type auto
 +
 +
[[User:Mmccarn|Mmccarn]] 18:32, 26 May 2008 (MDT)

Revision as of 02:52, 27 May 2008

When I install cygwin, openssh, rsync and vim as described in this article, rsync is installed in /bin, not in /usr/bin.

Thus, the command I needed to run to create the rsync service was:

cygrunsrv --install "rsyncd" --path /bin/rsync --args "--daemon --no-detach" \
--desc "Starts a rsync daemon for accepting incoming rsync connections" \
--disp "Rsync Daemon" --type auto

instead of:

cygrunsrv --install "rsyncd" --path /usr/bin/rsync --args "--daemon --no-detach" \
--desc "Starts a rsync daemon for accepting incoming rsync connections" \
--disp "Rsync Daemon" --type auto

Mmccarn 18:32, 26 May 2008 (MDT)