Hi, We've got a current rsync deployment that's just gone live and will eventually have over 200 clients. The server is running on Windows Server 2003 (no choice :( ) with the cygwin libs and the clients are all Linux - all is well so far. Two questions regarding log files: 1) We need more detailed log files to check which files have been successfully transferred to which clients which seems possible from the man pages. In our test environment rsyncd.conf we've tried: log format = %a %n %b log file = C:/rsync/rsyncd.log but this doesn't seem to make any difference and the logs still look like the default: 2006/10/25 15:15:15 [1428] sent 342 bytes received 193 bytes total size 128434440 Any ideas? 2) All machines are in a pure IP based network with no domain and the logs are full of lines like: 2006/10/25 15:15:15 [1428] rsync on outbox from root@unknown (192.168.1.23) Any way of suppressing this extra noise? Thanks David
On Thu, Oct 26, 2006 at 05:05:53PM +0100, David Cuthill wrote:> log format = %a %n %b > log file = C:/rsync/rsyncd.logDon't forget to set: transfer logging = yes ..wayne..