Oct 21, 2002 #1 md1750 MIS Apr 18, 2001 80 US How I configure rsync with ssh in solaris to enable secure file transfer.
Oct 28, 2002 #2 ecasadella MIS Oct 11, 2002 57 AD You can do that by executing rsync -e ssh <more rsync opts.> <source> <dest>. OR In the new versions you can set RSYNC_RSH="ssh2 -c des" variable if you want to specify the encription mode. EDC Upvote 0 Downvote
You can do that by executing rsync -e ssh <more rsync opts.> <source> <dest>. OR In the new versions you can set RSYNC_RSH="ssh2 -c des" variable if you want to specify the encription mode. EDC
Oct 28, 2002 Thread starter #3 md1750 MIS Apr 18, 2001 80 US How do I set up rsync+ssh on solaris to enable secure file transfer. Upvote 0 Downvote
Oct 29, 2002 #4 ecasadella MIS Oct 11, 2002 57 AD You have to install ssh and rsync separately. RSYNC uses by default rsh as remote shell, with the option "-e" you are telling it use an alternate remote shell, in this case ssh. EDC Upvote 0 Downvote
You have to install ssh and rsync separately. RSYNC uses by default rsh as remote shell, with the option "-e" you are telling it use an alternate remote shell, in this case ssh. EDC