Displaying 1 result from an estimated 1 matches for "tester01".
2002 Apr 16
3
Update: WARNING: --rsh or -e option ignored when connecting to rsyncdaemon]
...oo. The problem is that you aren't calling
your rsync daemon from your commandline. You are trying to connect via
rsync to host as axlink and start a 'rsync --sender' process, to transfer
data within the ssh process.
"rsync -auve ssh -z --port=22
--password-file=/export/home/tester01/rsync.pwd
/export/home/tester01/. axlink@host:/home/axlink/rs"
should be
"rsync -auvz --password-file=/export/home/tester01/rsync.pwd
/export/home/tester01/. axlink@host::/home/axlink/rs"
You don't use an external transport (-e ssh) to go to a rsync daemon.
--port=22 implies tha...