I would like to run rsync without the need to enter a password.
Iam using rsync tool to sync files from one linux server to other linux server, however it takes huge time to finish it.
I have a NAS (Netgear Readynas NV+) at home and a linux (Arch) box at work that is always on. The linux box is already running an ssh server/daemon and the NAS is already running an rsync server/daemon. The NAS does not support rsync over ssh.
I was using a script to perform rsync in sudo crontab. The script does a 2-way rsync (from serverA to serverB and reverse). the rsync uses ssh to connect between servers. After i reboot both the server machines, the rsync is not working in sudo crontab.
Hello,
I have two AIX6.1 machines that can communicate with each other through ssh.
The problem is that one of them somehow closes the connection after some time and i don't know the reason of that.
For example today i send through rsync command 7 files from one server to the other.
For some reason when running a single rsync command I am getting 1 MB/sec to 2 MB/sec even when I connecting 2 servers both connected to 1 Gbps ports.
rsync -v --progress -e ssh /backup/mysqldata/mysql-bin.000199
root@XXX.XXX.XXX.XXX:/secondary/mysqldata/mysqldata/mysql-bin.000199
I have over 800 GB of data to transfer split among 500 or so files all starting with:
mysql-bin.000*
I've fo
Hi,
I'm a newbe on this forum, and I have a question.
I try to send a file to other server with solaris with rsync, but I have this error:
bash: rsync: command not found
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(359)
the command is
rsync -ctvz --timeout=10 --bwlimit=100 export.tar.gz max@reposrv:
I have a mirroring system in place with rsync and it works well. However, moving a file causes it to be transferred again in its entirety.
Given what I know about the rsync algorithm's rolling checksum, wouldn't it be possible to:
tar all the source files
rsync the tar
and only incur a block-size penalty for the change in file name, after which the checksum would resynchronise?
I used rsync to copy a large number of files, but my OS (Ubuntu) restarted unexpectedly.
After reboot, I ran rsync again, but from the output on the terminal, I found that rsync still copied those already copied before. But I heard that rsync is able to find differences between source and destination, and therefore to just copy the differences.