problem with rsync


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting problem with rsync
# 1  
Old 07-16-2009
problem with rsync

Hi,
I am copying files from one server to the other by rsync utilty.
I am giving a list file to the rsync and i am writing it to the log also.
The problem is that,rsync is not copying the order in which i have given files and links to the list. I can see it, through the log file.
I am giving SEQ_ORDER_LIST to the rsync.
SEQ_ORDER_LIST consists of
file1
link1
file 2
link2
file3
link3

but the log shown is
file1
file2
file3
link1
link2
link3

I want the rsync to copy the files in the order specified in the list file.
so please help me .
# 2  
Old 07-17-2009
The obvious question here is: why does the order matter? Isn't it enough that everything is transfered as intended, especially since any order will probably be ignored/enforced by any program on the other side?

Other than that, you could read the sequence file in a while loop and invoke rsync once for every file. rsync itself doesn't provide any such mechanism as far as I know.
# 3  
Old 07-17-2009
Hi pludi,

Each time rsync tries to connect to remote machine it prompts for password.
So many times i have to give the password to get my work done.
So i cant go for that.

And can you suggest me any laternatives to "mirror server" .
when i have browsed, i have come across names like RAID0 ,drbd,nbd.
I dont whether they really serve my purpose of "mirroring" action.
# 4  
Old 07-17-2009
The password problem can be circumvented by using rsync via ssh+public key authentication, for example.

As for the "mirror server", as you put it, I can't give you any advice since I don't know what you're trying to accomplish? Do you want a backup? Data integrity in case of failures? Shared resources?
# 5  
Old 07-17-2009
Hi pludi,
I am writing a script that copies files and links to a backup server.
I have used rsync for synching .But as it is sortingn in alphabetical order before copying the files and links, the copying order is getting disturbed.
So i am looking for other alternative tools like Unison,bacula,Backuppc, Amanda.
I am not getting which wiil fit my requirement.
Can you pls help me.
# 6  
Old 07-18-2009
OK, so you're copying files to a backup server. Why is the transfer order important? The filesystem doesn't care. The OS doesn't usually care. Any application shouldn't care, except maybe if it processes the files as they come in, and that can be solved with intelligent programming.

Mind you, I'm not trying to promote rsync or talk down any other backup software, I'm just trying to find out what you want and where your requirements come from.
# 7  
Old 07-20-2009
transfer order in rsync

Transfer order is really not important to me.
But i was supposed to write the script in such a way from our tech leads.
Any ways I am switching over to Unison or Bacula.
Is it wise to use bacula or Unison?
Which one will you suggest?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Rsync problem

Hi Guys does any know the cause of this error on rsync: tried transferring files to a remote server in a NFS share directory and i got that error, previously it was ok. (1 Reply)
Discussion started by: RobertG
1 Replies

2. Shell Programming and Scripting

Rsync problem versions out of sync

Hello, I have a report which I am writing as a .tex file, and I am editing from two computers (office and home laptop). I use rsync over ssh connection to synchronise between them and all the rssync commands are written in a Shell script. #synchronise from office computer to home laptop... (2 Replies)
Discussion started by: ajayram
2 Replies

3. UNIX for Advanced & Expert Users

Problem with rsync - connection unexpectedly closed

Hi i am running a rsync between two remote servers but it errors. The rsync command is a follows rsync -aWv -e rsh --stats progress --delete --ignore-errors --exclude .DS_Store --exclude .HSancillary --exclude .HSxmap --exclude .HSResource /raid1/PRODUCTION/ ... (0 Replies)
Discussion started by: treds
0 Replies

4. Solaris

rsync via ssh Problem

Hi all, recently I took over the admin-task for a solaris 10 x86 machine. I would like to use rsync for backing up files via ssh to another machine. There are two machines I have tested with both without success. One is a ubuntu server 8.04, the other one is ubuntu 10.04 desktop. Installed... (2 Replies)
Discussion started by: sly_dunbar
2 Replies

5. Solaris

Problem of install rsync on Solaris 10

hi all, I have download latest version for rsync from rsync download web site. I trying install rsync tool to sun solaris 10 (SPARC M4000 server) and but get some error. Please see below: -bash-3.00$ ./configure configure.sh: Configuring rsync 3.0.6 checking build system type...... (3 Replies)
Discussion started by: Tlg13team
3 Replies

6. Shell Programming and Scripting

single quote problem with rsync

Hi everybody, I'm a newbie and hope that someone help me in this problem. I have a filename in LINUX with single quote like this: abs@hosttest:~/ABS/BETY/cygdrive/C/DECLARANOT 1.1.4/02 - ROCK/052 - GUNSROSES> dir You* -rw-r--r-- 1 abs users 2365881 2008-08-25 09:16 You're Crazy.mp3 ... (9 Replies)
Discussion started by: mr_boysito
9 Replies

7. UNIX for Dummies Questions & Answers

rsync problem

Hi, I wanna synchronize all the /etc settings from my previous server to new one. (Both of them are Debian Etch 4.0) I used this command: rsync -r -vz -e ssh someuser@myOldServer:/etc /etc & rsync -avz -e ssh someuser@myOldServer:/etc /etc These commands told me that everything occur perfectly... (6 Replies)
Discussion started by: mjdousti
6 Replies

8. UNIX for Advanced & Expert Users

rsync problem!!

I know double posting is not allowed... but I need urgent help on this question... so... please bear with me! I am having a problem with rsyncing 2 directories in my network. Here is the situation: 1. I have a directory tree on the 1 server say: SOURCE 2. I have to rsync this directory tree... (3 Replies)
Discussion started by: skotapal
3 Replies

9. UNIX for Advanced & Expert Users

rsync problem

Hi, while runninc rsycnc I am getting following error rsync error: received SIGUSR1 or SIGINT (code 20) at rsync.c(229) any idea? (1 Reply)
Discussion started by: redlotus72
1 Replies

10. UNIX for Dummies Questions & Answers

rsync problem - space character in filename

I have a freebsd box with a smb connection to a Windows server - I use rsync to copy specific directories, and files, between the two. The problem is the Windows box has files with space characters in their filenames and rsync fails to copy these. Reading the documentation of rsync it appears it... (3 Replies)
Discussion started by: chief2
3 Replies
Login or Register to Ask a Question