search for: rsync_rsh

Displaying 20 results from an estimated 50 matches for "rsync_rsh".

2002 Jan 31
2
configure --with-rsh=CMD and default blocking-IO support
...ifies main.c to improve the blocking-IO setting code. The old code would set blocking_io to '1' if the string matched either "rsh" or "remsh" (whichever one was configured into rsync). The new code has a slightly modified version of this check (that still works even if RSYNC_RSH isn't defined to be "rsh"), but it also adds a way to force the blocking-IO setting (both at configure time and via the RSYNC_RSH environment variable). The idiom I chose to use was to prefix the value with '@' to indicate that blocking-IO should be used, and to prefix it wit...
2003 Dec 16
3
default --rsh
...other it has a big impact on how rsync > works. I suppose we should just leave it for later. Code-wise it is almost trivial but user impact for those that depend on the default being rsh or remsh is potentially non-trivial. I think most that need rsh instead of ssh would be fine just setting RSYNC_RSH but the magic with [non]blocking io based on if ((blocking_io == -1) && (strcmp(cmd, RSYNC_RSH) == 0)) blocking_io = 1; might means some might have to add the --blocking-io option so they might as well use "-e rsh --blocking-io". Of course that bit of lo...
2003 Mar 18
3
problems with rsync in cygwin
...eer rsync error: error in rsync protocol data stream (code 12) at /tmp/rsync-2.5.5/i o.c(162) I thought the docs said that rsync protocol would be used if I used the rsync:// URL. It still wants to use rsh. I'm using rsync version 2.5.5 under Cygwin. So, I reread the man page and found the RSYNC_RSH environment variable could be used to specify the protocol, so I set it like so: RSYNC_RSH=rsync and tried again. The first error is gone, only to be replaced with another: $ rsync -vva /cygdrive/c/installs/palm rsync://192.168.2.3/palm opening connection using rsync rsync rsync --server -vvlogD...
2005 Sep 24
0
[Bug 3116] New: large tar files: 1 gig size: retransmitted: rsync_rsh
https://bugzilla.samba.org/show_bug.cgi?id=3116 Summary: large tar files: 1 gig size: retransmitted: rsync_rsh Product: rsync Version: 2.6.6 Platform: x86 OS/Version: FreeBSD Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: drinking.coffee@gmail.com QACo...
2011 Oct 19
1
why does rsync translate user@host into '$RSYNC_RSH -l user host'?
Why does rsync believe it knows more about the use of the token to the left of the colon than the program which will be used as the remote connection? I have a script called sshto with accepts targets like this: host1!host2!host3 and constructs the requisite ssh ProxyCommand options to do a multihop ssh to host3 to run a command. Very useful if connecting to firewalled nonroutable hosts or to
2002 Jan 24
3
SSH
I added the enviroment variable RSYNC_RSH=ssh and every things seems to work fine, but there is no way to tell if rsync is actually using ssh or not?
2005 Jun 08
1
BUG REPORT: latest rsync misinvokes ssh with user@host ...
The latest rsync (2.6.5) seems to invoke the transport specified by $RSYNC_RSH differently. I have this set to point at an ssh wrapper script (which is now I noticed), and an strace shows this: [archives/silva]#root@jazzbo*> strace -e trace=process -f /opt/bin/rsync -avHP /mnt/phat/archives/silva/. root@ali:/a/ali/home/............. [...snip...] execve("/u/came...
2003 Oct 09
4
howto enable ssh on connect to rsync daemon
...llow = node1 secrets file = /etc/rsyncd.secrets 5. Created /etc/rsyncd.secrets at mode 600 on node2 with this content: user:password 6. Created a script on node1 to be used from cron with this content: #!/bin/ksh # LOG=/var/log/rsync.log export USER=user export RSYNC_RSH=ssh export RSYNC_PASSWORD=password echo $(date) >> $LOG echo "" >> $LOG rsync -av --delete node2::resource /path/to/localresource > $LOG 2>&1 echo "**********************************************" >> $LOG ---------...
2010 Feb 09
9
DO NOT REPLY [Bug 7120] New: Variable bandwidth limit .. bwlimit
https://bugzilla.samba.org/show_bug.cgi?id=7120 Summary: Variable bandwidth limit .. bwlimit Product: rsync Version: 3.1.0 Platform: Other OS/Version: Linux Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: pmdumuid at gmail.com
2020 May 29
0
[Bug 1997] Add QoS to ControlPath escapes
...--------------cut here---------------start------------->8--- Host * ControlMaster auto ControlPath /home/peter/.ssh/control-%r@%h:%p --8<---------------cut here---------------end--------------->8--- ~/.profile: --8<---------------cut here---------------start------------->8--- export RSYNC_RSH="ssh -o ControlPath=/home/peter/.ssh/rsync-control-%r@%h:%p" --8<---------------cut here---------------end--------------->8--- This has an interesting side-effect: rsync auto-completion in bash uses the interactive ControlMaster! Which is fine, since auto-completion /is/ interactiv...
2002 Jun 11
2
problem and a question
I am running a simple command, no firewall dropping, going to unix rsync server 2.3.1 from a win2k machine. and I am getting this error. note:(this used to work before I upgraded my win machine from NT4 to win2k. C:\DATA\RSYNC>c:\winnt\rsync -a -v c:\rsync\test-rsync user@www.server.com::site/htdocs/ > c:Connection refused rsh: can't establish connection unexpected EOF in read_timeout
2003 Jan 07
1
HELP! rsync won't upload my .htpasswd files
...ey start with "." Is there some way around this? It's very important that these files get uploaded to this directory. Here is the code I'm using to execute rsync: #!/bin/sh RSYNC=/opt/sfw/bin/rsync SSH="/usr/local/bin/ssh -i /export/home/gyang/.ssh/identity-cron" RSYNC_RSH=$SSH export RSYNC_RSH $RSYNC -avz --delete --rsync-path=$RSYNC --exclude="CVS" /export/home/intraspect/www/ www:/var/apache/htdocs $RSYNC -avz --delete --rsync-path=$RSYNC --exclude="addresses.txt" --exclude="*.csv" --exclude="CVS" /var/apache/webscript/* w...
2004 Jan 05
0
No subject
...>man rsync |grep environment Reformatting page. Wait... done environment variable. the environment variable RSYNC_PROXY to a hostname:port pair environment variable RSYNC_PASSWORD to the password you want WARNING: On some systems environment variables are visible RSYNC_RSH environment variable. The CVSIGNORE environment variable supplements any The RSYNC_RSH environment variable allows you to over- The RSYNC_PROXY environment variable allows you to The USER or LOGNAME environment variables are used to HOME The...
2006 Mar 28
1
rsync on windows
Hi, I have installed a rsync on windows which downloaded on http://optics.ph.unimelb.edu.au/help/rsync/rsync_pc1.html and run edited bat file content: *********************************************** @echo off set PATH=c:\rsync;%PATH% set CYGWIN=tty binmode set TERM=ansi rem set RSYNC_RSH=c:\rsync\ssh.exe set RSYNC_RSH=/cygdrive/c/rsync/ssh.exe set USERNAME=myusername set HOME=c:\rsync echo Drive C >>c:\rsync\rsync.log c:\rsync\gnudate >>c:\rsync\rsync.log c:\rsync\rsync -auv --delete --exclude "/rsync/rsync.log" "/cygdrive/c/Program Files/PostgreSQL/8.1/&...
2002 Dec 03
3
rsync 2.5.5, "unexpected tag failures", Solaris 2.6 vs. 2.8, "--b locking-io" workaround
Hi, I have been having a problem that seems related to previously reported problems but persists. I am syncing from a 2.6 Solaris box to a 2.8 solaris box. All are running rsync 2.5.5. When I sync (commands simplified for example, always using rsh): 2.8box% rsync -e rsh 2.6box:/path/path/stuff/ /path/path/newstuff/ i.e., the 2.6 box is the server, I get spurious, persistent but inconsistent
2002 Jan 04
1
rsync -e ssh --bwlimit=20 ?
...nsport without success. Here's what I get: % rsync --bwlimit=20 from.com:/dir/file.txt /dest user@from.com's password: **** rsync: unrecognized option `--bwlimit=20' unexpected EOF in read_timeout I tried specifying ssh transport using both the -e option and by setting the RSYNC_RSH evironment variable-- it made no difference. rsync works as expected without the --bwlimit option. I know --bwlimit is a fairly new feature. and I researched this as much as I could without going into the source code... anyone able to get this to work, or have any tips? Thanks jrobinson ______...
2004 May 25
2
protocol version mismatch
Hi, I am pretty new to rsync so this question might have a very trivial answer. Sorry for that then. (using google didn't work though) I want to synchronise the files from my laptop to my machine at work and back from time to time. Both machines have linux (the laptop has fedora core 2 with a 2.6.6 kernel and the remote machine redhat 9 with a 2.6.3 kernel) On the laptop I use rsync
2002 Nov 19
2
The exclude option of Rsync not work right.
...\ /software/testdir/testfile.html" # #APPNCA_EXCL="/software/testdir2/test2.ora \ /software/testdir2/test2.cfg" # #ACLE6i_EXCL="/rootstuff/testdir/names.ora \ /rootstuff/testdir/names.conf" # #RSYNC=/usr/local/bin/rsync export RSYNC_RSH="ssh" echo "exporting rsync_rsh" #export RSYNC EXTRAFLAGS="$1" /usr/bin/rsync $EXTRAFLAGS -a /export/home/landser/* landser@serv602:/usr/local/landser/ echo "just attempted to run home " # echo "Now attempting to run testdir" rsync -av /software/te...
2008 Jan 29
1
rsync ignores include rule - analogic to other that works
...because of pattern /etc/ [sender] showing file /etc/csh.login because of pattern /etc/** ........ So at the end /storage dir is created but no content inside. Is it possible reason that it is too huge and/or too many files inside? But I don't see any error on -vv Here is script I use export RSYNC_RSH="ssh -o Compression=no -x"; rsync -aHvx \ --include-from=backup.includes \ --progress --numeric-ids --delete \ --delete-excluded --relative --verbose \ / root@192.168.1.10:/root/backup/laptop/lin/ --------------------------------------- backup.includes +...
2002 Apr 05
2
little patch with zero priority
Hi, I have a little request, which should be considered "very very very very low priority" but would be useful nonetheless... in Makefile.in there are two lines with additional space at end of line and my editor strip it, so I must hand-edit the cygwin-specific patch in order to create the package (nothing serious: only patch is using /usr instead of /usr/local as a default prefix and