Re: rsync error: some files could not be transferred (code 23) at main.c(1045)

2003-12-23 Thread Wayne Davison
On Tue, Dec 23, 2003 at 04:59:20AM +0100, [EMAIL PROTECTED] wrote:
   rsync -avv --delete --delete-excluded server::public/$i dest/

Look in the server's log file -- rsync puts some of the messages there
out of paranoia about exposing too much about the server's setup to the
end user.  It may well be that rsync is being too paranoid in this
instance.

..wayne..
-- 
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: some files could not be transferred (code 23) at main.c(1045)

2003-12-23 Thread Jim Salter
Look in the server's log file -- rsync puts 
some of the messages there out of paranoia 
about exposing too much about the server's 
setup to the end user.  It may well be that 
rsync is being too paranoid in this instance.

..wayne..
Is there any way to *change* that behavior, particularly if rsync is running as root anyway?  That's annoyed me a couple of times myself.  

Jim Salter

--
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: some files could not be transferred (code 23) at main.c(1045)

2003-12-23 Thread Daemian Mack
[EMAIL PROTECTED] wrote:
On Tue, Dec 23, 2003 at 04:00:24AM +0100, [EMAIL PROTECTED] 
May the file-list is getting a bit to big for rsync?

If I splitt the transfer using

for i in *; do
  rsync -avv --delete --delete-excluded server::public/$i dest/
done
it works seamlessly. The file list is about 50 files long.
This brings up something I've been wondering about.  If I were to 
compose a list of files and pass them to rsync one at a time, what sort 
of overhead would this entail as opposed to simply pointing rsync to a 
directory containing those files?
--
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: some files could not be transferred (code 23) at main.c(1045)

2003-12-22 Thread jw schultz
On Tue, Dec 23, 2003 at 04:00:24AM +0100, [EMAIL PROTECTED] wrote:
 Hi!
 
 How can I find out what files wheren't transferred If I have error:
 
rsync error: some files could not be transferred (code 23) at 
 main.c(1045)
 
 running rsync?
 
 I've tried rsync -v[v][v] but had no success. It wasn't possible to make 
 sure what where the files producing the error. Any idea?
 
 rsync is version 2.5.7

You might try capturing stderr.

-- 

J.W. SchultzPegasystems Technologies
email address:  [EMAIL PROTECTED]

Remember Cernan and Schmitt
-- 
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: some files could not be transferred (code 23) at main.c(1045)

2003-12-22 Thread Thomas . Schweikle
 On Tue, Dec 23, 2003 at 04:00:24AM +0100, [EMAIL PROTECTED] 
wrote:
 Hi!

 How can I find out what files wheren't transferred If I
 have error:

rsync error: some files could not be transferred
(code 23) at main.c(1045)

 running rsync?

 I've tried rsync -v[v][v] but had no success. It wasn't
 possible to make sure what where the files producing the
 error. Any idea?

 rsync is version 2.5.7

 You might try capturing stderr.

Tried that too, but without success. The only message I see is
IO error encountered - skipping file deletion
rsync error: some files could not be transferred (code 23) at main.c(1045)

May the file-list is getting a bit to big for rsync?

If I splitt the transfer using

for i in *; do
  rsync -avv --delete --delete-excluded server::public/$i dest/
done

it works seamlessly. The file list is about 50 files long.

-- 
Thomas


-- 
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html