Here is my rsyncd.conf file:
 
use chroot = false
max connections = 4
log file = c:/rsyncd/rsyncd.log
pid file = c:/rsyncd/rsyncd.pid
lock file = c:/rsyncd/rsyncd.lock
 
[mssql]
 
    path = g:/MSSQL/Backup
    comment = MSSQL Database Backup
    auth users = backuppc, root
    uid = backuppc
    gid = backuppc
    secrets file = c:/rsyncd/rsyncd.secrets
    hosts allow = 10.1.6.160, 209.4.229.160, localhost
    strict modes = false
    read only = true
    list = false
    transfer logging = yes
 
Here is my rsyncd.secrets file:
 
#
# The format of this file is user:password. You can have as many entries
# as you wish. These accounts are sepecifc to the rsync daemon and share
# no relation to Windows local/domain accounts, nor Cywin entries in the
# passwd file.
#
# SECURITY WARNING: Don't use these defaults of UUU for the user name
# and PPP for the password! Change them!!
#
# Also: make sure this file ends in a newline.  Otherwise the last
# username/password pair will be ignored.
#
 
backuppc:*****
root:*****
 
Here is my per pc config.pl
 
    # Tell BackupPC we wish to use rsyncd: requires rsync to be running as
    # a service/daemon on the client system
    #
    $Conf{XferMethod} = 'rsyncd';
    #
    # Tell BackupPC which user name and password to use.  This should
    # match the userName:password pair in the C:\rsyncd\rsyncd.secrets
    # file on the client.
    #
    $Conf{RsyncdUserName}  = 'backuppc';
    $Conf{RsyncdPasswd}    = '******';
    $Conf{RsyncdAuthRequired} = 1;
 
    #
    # Tell BackupPC which share to backup.  This should be the name
    # of the module from C:\rsyncd\rsyncd.conf on the client (the
    # name inside the square brackets).  In the sample rsynd.conf
    # file the cDrive module is the entire C drive.
    #
    $Conf{RsyncShareName}  = 'mssql';
 
    #
    # Rsync daemon port on the client, for $Conf{XferMethod} = "rsyncd".
    #
    $Conf{RsyncdClientPort} = 873;
 
    $Conf{XferLogLevel} = 3;
    $Conf{WakeupSchedule} = [ '06' ];
    $Conf{SendmailPath} = '/usr/sbin/sendmail';
    $Conf{EMailNotifyMinDays} = 1.0;
    $Conf{EMailFromUserName} = 'backuppc';
    $Conf{EMailAdminUserName} = '[EMAIL PROTECTED]'
<mailto:'[EMAIL PROTECTED]'> ;

Thanks,
 

-----Original Message-----
From: Nicholas Hall [mailto:[EMAIL PROTECTED]
Sent: Friday, December 01, 2006 12:41 PM
To: Byron Trimble
Cc: Backuppc-Users (E-mail)
Subject: Re: [BackupPC-users] Rsyncd


On 12/1/06, Byron Trimble < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> >
wrote: 


I received this error meesage last night when my backups ran:

backup failed (aborted by signal=PIPE)

Could anyone tell me what this means.



Byron, perhaps you should post your rsyncd.conf on your Window's box and pc
config.pl from BackupPC to the list.  Make sure to censor your passwords if
necessary.  It seems like you have a simple misconfiguration issue but it's
hard to pin point without specifics.


-- 
Nicholas Hall
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 
262.208.6271 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to