Re: [BackupPC-users] Backup failing

2008-06-18 Thread Craig Barratt
Ted writes:

> I have an older version of backuppc (2.1.2?) running on an ubuntu dapper
> server.  Backups on a hardy client are now failing and it looks like
> somehow the directory information is all garbled.  I've attached a
> screenshot, the most recent error log and to configuration file.  Any
> help will be much appreciated.

Was a >8GB file added to your system?  There was a bug fixed in
2.1.2pl2:

* Fixed bug in BackupPC_tarExtract for files >8GB in size whose
  lengths are multiples of 256.  Reported by Jamie Myers and
  Marko Tukiainen, who both helped debugging the problem.

Craig

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Windows 2000 server and windows 2003 server

2008-06-18 Thread David Kuntadi
>From backuppc server, I could see the windows server using "smbtree -b
-N",  and using "smbtree -b -U username%password" I could even see the
shared folders.

But when I try to backup using smb, still it was aborted due to "no file dump".

I decided to mount windows server share first to backuppc server, and
backup using localhost. So far it could backup successfully.

Anybody has comment on the drawback of this method?

Regards,
David

On Wed, Jun 18, 2008 at 10:18 AM, David Kuntadi <[EMAIL PROTECTED]> wrote:
> On Wed, Jun 18, 2008 at 9:36 AM, David Kuntadi <[EMAIL PROTECTED]> wrote:
>
>> Mabe the problem with smb is this one:
>> 
>> Dear Craig,
>> first of all I want to say thank you very very much for such a great
>> piece of free software and all the time you (and the other developers)
>> spent for it!
>>
>> But I think, I've found a little (really tiny) bug in the regexp in line
>> 244 of Smb.pm (BackupPC version 2.0.2):
>> if ( /^\s*(-?\d+) \(\s*\d+\.\d kb\/s\) (.*)$/ ) {
>>
>> I think it should better be as follows:
>> if ( /^\s*(-?\d+) \(\s*\d+[\.\,]\d kb\/s\) (.*)$/ ) {
>> =
>>
>> But I do not know where the Smb.pm is. So, both smb and rsync still fail.
>
> I have found Smb.pm (/use/share/backuppc/lib/BackupPC/Xfer/) and
> editted as above, but still same error.
>
> Regards,
> David
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Includes and Excludes

2008-06-18 Thread Christoph Litauer
Craig Barratt schrieb:
> Christoph writes:
> 
>> I try to backup a share /export/user1 containing user data starting with
>> a-f except for subdirectories ending on _DELETED. Is it possible?
> 
> BackupPC takes $Conf{BackupFilesOnly} and $Conf{BackupFilesExclude} and
> converts them into rsync include/exclude rules:
> 
> > Sent include: /[a-z]*
> > Sent exclude: /*
> > Sent exclude: *_DELETED
> > Sent exclude: search.sqlite
> 
> Rsync checks the include/exclude rules in order until it finds a match.
> The problem is that the wildcard /[a-z]* matches /aa_DELETED, so
> it assume that file is included, and the *_DELETED ruled is not
> checked.
> 
> One alternative is to not use $Conf{BackupFilesExclude} and
> $Conf{BackupFilesOnly} and instead to build your own
> include/exclude options in $Conf{RsyncArgs}.  I haven't
> tested this, but something like this should work:
> 
> $Conf{RsyncArgs} = [
>   '--numeric-ids',
>   '--perms',
>   '--owner',
>   '--group',
>   '-D',
>   '--links',
>   '--times',
>   '--block-size=2048',
>   '--recursive',
>   '--checksum-seed=32761',
>   '--exclude=*_DELETED',
>   '--exclude=search.sqlite',
>   '--include=/[a-z]*',
>   '--exclude=/*',
> ];

Craig,

thanks for your response! I will try this solution.

But: I thought of this potential filter rule problem, too. So I tried 
with a rsync client:

rsync -anv  --include='/[a-z]*' --exclude='*_DELETED/'
   [EMAIL PROTECTED]:/export/user1 /tmp
receiving file list ... done
user1/a/a
user1/b/b

And the other order:
rsync -anv  --exclude='*_DELETED/' --include='/[a-z]*'
   [EMAIL PROTECTED]:/export/user1 /tmp
receiving file list ... done
user1/a/a
user1/b/b


As you can see the order of include/exclude filter options doesn't seem 
to matter ...

-- 
Regards
Christoph

Christoph Litauer  [EMAIL PROTECTED]
Uni Koblenz, Computing Center, http://www.uni-koblenz.de/~litauer
Postfach 201602, 56016 Koblenz Fon: +49 261 287-1311, Fax: -100 1311
PGP-Fingerprint: F39C E314 2650 650D 8092 9514 3A56 FBD8 79E3 27B2


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Includes and Excludes

2008-06-18 Thread Christoph Litauer
Craig Barratt schrieb:
> Christoph writes:
> 
>> I try to backup a share /export/user1 containing user data starting with
>> a-f except for subdirectories ending on _DELETED. Is it possible?
> 
> BackupPC takes $Conf{BackupFilesOnly} and $Conf{BackupFilesExclude} and
> converts them into rsync include/exclude rules:
> 
> > Sent include: /[a-z]*
> > Sent exclude: /*
> > Sent exclude: *_DELETED
> > Sent exclude: search.sqlite

Btw: Where does this "exclude: /*" come from? I didn't define it as an 
include/exclude pattern ...

-- 
Regards
Christoph

Christoph Litauer  [EMAIL PROTECTED]
Uni Koblenz, Computing Center, http://www.uni-koblenz.de/~litauer
Postfach 201602, 56016 Koblenz Fon: +49 261 287-1311, Fax: -100 1311
PGP-Fingerprint: F39C E314 2650 650D 8092 9514 3A56 FBD8 79E3 27B2


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] NAS Based Backuppc

2008-06-18 Thread naigy

Hi,

I am looking at incorporating Backuppc into my home enviroment. I have 3 
Windows PC and a File / Home Mail Server (Linksys Nslu2) which I would like to 
backup. I am wondering if there is a Network Access Server like the Western 
Digital MyBook World or Terastation etc. which can be modified (ie Hacked if 
required) to run BackupPC including the web interface so that it is all on the 
one device. I realise that using these basic devices make these kind of 
processes very slow but really like the feature set of BackupPC and also having 
the backup process automated in a way that fits in with laptops etc. while not 
taking away processing time etc on the individual workstations plus the issue 
of compatability accross the linux and windows platforms.

I have run BackupPC on my Linksys Nslu and done a couple of tests and it 
appears to work well but as one of the drives I want to back up is the drive 
connected to this device I can not run it on this device plus it is a little 
bloated as it is (file, mail, web, vpn server). 

Speed is as stated not really much of a concern it is more the compatibility 
and support for the device / and preferably BackupPC on that device that I am 
after.

Any advice on any devices which are capable of doing this would be appreciated. 
I only need something with a drive approx 150GB but if it is a bigger capacity 
then thats fine too. Thanks in advance.

+--
|This was sent by [EMAIL PROTECTED] via Backup Central.
|Forward SPAM to [EMAIL PROTECTED]
+--



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Windows 2000 server and windows 2003 server

2008-06-18 Thread Les Mikesell
David Kuntadi wrote:
>>From backuppc server, I could see the windows server using "smbtree -b
> -N",  and using "smbtree -b -U username%password" I could even see the
> shared folders.
> 
> But when I try to backup using smb, still it was aborted due to "no file 
> dump".
> 
> I decided to mount windows server share first to backuppc server, and
> backup using localhost. So far it could backup successfully.
> 
> Anybody has comment on the drawback of this method?

If that works, the normal method should too.  I believe there are some 
versions of smbclient with bugs in command line parsing that have 
trouble with backuppc.  It's been mentioned on the list but I've 
forgotten the details.  Also, smbclient reads your default smb.conf file 
even though most of its settings relate to the server so it is possible 
to have problems that relate to the password server or similar global 
settings there.

-- 
   Les Mikesell
[EMAIL PROTECTED]


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] problem with interface web

2008-06-18 Thread fatima ech-charif
 hi

i use lighttpd as server for backuppc in ubuntu 7.10 gusty

and i can't get interface web ,it couldn't accept my user and password

when i use this command  tail -f /var/log/lighttpd/error.log

for having error list i got that:

 2008-06-18 14:15:05: (log.c.75) server started
2008-06-18 14:16:00: (http_auth.c.1138) digest: auth failed for admin
wrong password
2008-06-18 14:16:22: (http_auth.c.1138) digest: auth failed for admin
wrong password
2008-06-18 14:41:11: (server.c.1467) server stopped by UID = 0 PID = 6494
2008-06-18 14:41:11: (log.c.75) server started
2008-06-18 14:42:09: (http_auth.c.1138) digest: auth failed for admin
wrong password
2008-06-18 14:51:20: (connections.c.280) SSL: 1 error:140780E5:SSL
routines:SSL23_READ:ssl handshake failure
2008-06-18 14:52:21: (server.c.1467) server stopped by UID = 0 PID = 6554
2008-06-18 14:52:21: (log.c.75) server started
2008-06-18 14:52:43: (http_auth.c.1138) digest: auth failed for admin
wrong password



*** my password is small  < 8

thanks


lighttpd.conf
Description: Binary data
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Pause backup jobs

2008-06-18 Thread mark k
Wondering if anyone one has found away to pause or suspend a backup
job instead of stopping

I am backing up several servers with large luns 750 gb to 2tb in size.
With millions of tiny files.

So everytime a new rsync job kicks off it has to rebuild the file list
and the only time the backup job completes is on the weekends, when
the jobs can run 24/7
can only run about 8 hours a day on the weekdays.

Is there a way to pause  the rsync on client and then resume it later,
so that at least it will get a base full over a couple of nights and
then incrementals should work normally after that.

Thanks

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Pause backup jobs

2008-06-18 Thread Les Mikesell
mark k wrote:
> Wondering if anyone one has found away to pause or suspend a backup
> job instead of stopping
> 
> I am backing up several servers with large luns 750 gb to 2tb in size.
> With millions of tiny files.
> 
> So everytime a new rsync job kicks off it has to rebuild the file list
> and the only time the backup job completes is on the weekends, when
> the jobs can run 24/7
> can only run about 8 hours a day on the weekdays.
> 
> Is there a way to pause  the rsync on client and then resume it later,
> so that at least it will get a base full over a couple of nights and
> then incrementals should work normally after that.

I don't think this is possible, but you might want to look at the file 
distribution on the target.  If you could split this into some number of 
directories that are backed up separately and perhaps a catch-all run 
that excludes the ones backed up individually it might go a lot faster. 
  Also, it might help a lot to add RAM to the server or run fewer 
concurrent jobs if it is swapping due to the size of the directory.  If 
you have a current version of backuppc, it should save partial full runs 
and accumulate parts until it is completed.  However, even incrementals 
will have to transfer the entire directory structure over before 
starting so it may continue to be a problem.

-- 
   Les Mikesell
[EMAIL PROTECTED]



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Pause backup jobs

2008-06-18 Thread mark k
I have set up a backup job that way, and split it up into 15
individual jobs, it is still a lot of files though.

I am going to try out sending a SIGSTOP and a SIGCONT to the rsync job
on the client and see if it works. If it does, I don't think that
would be very hard to incorporate into BackupPC interface.



On Wed, Jun 18, 2008 at 11:26 AM, Les Mikesell <[EMAIL PROTECTED]> wrote:
> mark k wrote:
>>
>> Wondering if anyone one has found away to pause or suspend a backup
>> job instead of stopping
>>
>> I am backing up several servers with large luns 750 gb to 2tb in size.
>> With millions of tiny files.
>>
>> So everytime a new rsync job kicks off it has to rebuild the file list
>> and the only time the backup job completes is on the weekends, when
>> the jobs can run 24/7
>> can only run about 8 hours a day on the weekdays.
>>
>> Is there a way to pause  the rsync on client and then resume it later,
>> so that at least it will get a base full over a couple of nights and
>> then incrementals should work normally after that.
>
> I don't think this is possible, but you might want to look at the file
> distribution on the target.  If you could split this into some number of
> directories that are backed up separately and perhaps a catch-all run that
> excludes the ones backed up individually it might go a lot faster.  Also, it
> might help a lot to add RAM to the server or run fewer concurrent jobs if it
> is swapping due to the size of the directory.  If you have a current version
> of backuppc, it should save partial full runs and accumulate parts until it
> is completed.  However, even incrementals will have to transfer the entire
> directory structure over before starting so it may continue to be a problem.
>
> --
>  Les Mikesell
>   [EMAIL PROTECTED]
>
>
>



-- 
Walt Disney  - "I love Mickey Mouse more than any woman I have ever known."

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Includes and Excludes

2008-06-18 Thread Craig Barratt
Christoph writes:

> > > Sent include: /[a-z]*
> > > Sent exclude: /*
> > > Sent exclude: *_DELETED
> > > Sent exclude: search.sqlite
> 
> Btw: Where does this "exclude: /*" come from? I didn't define it as an
> include/exclude pattern ...

BackupPC adds that.  To include just a particular path, rsync
needs rules to include each directory and exclude everything
else at each level.  For example, to include just /home/user,
you need:

--include='/home'
--include='/home/user'
--exclude='/*'
--exclude='/home/*'

I agree this translation can become problematic when you want to
include several things with wildcards.

Craig

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Can't create hard link

2008-06-18 Thread Chris Baker

I'm getting a message that I can't create a hard link between /backups/pc
and /backups/cpool, or something like that.

Does anyone have a suggestion on this? I did modify permissions. All files
are owned by backuppc. I'm sorry I don't have more detail about it. The
message flashes on the screen during bootup.

I'm using the latest version of BackupPC with Fedora Core 8.

Interestingly enough, BackupPC will start later after I log in.

Chris Baker -- [EMAIL PROTECTED]
systems administrator
Intera Inc. -- 512-425-2006




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Backing up laptop as available

2008-06-18 Thread Curtis Vaughan
I was wondering if there was a way to make backuppc backup laptops as the 
become available on the network. I don't want it to be dependent on the 
user (I saw something about users starting the process themselves using 
Unison). 
If there is no such thing, I could of course set a schedule for when 
certain laptops are in the office. But it would not be consistent.

Thanks!


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Backing up laptop as available

2008-06-18 Thread mark k
You could just setup an aggressive wake up schedule, and adjust the
black out schedule for those clients accordingly, of course it would
fail every time the wake up schedule tried to backup that client. You
can set it to wake up every 15 minutes if you want by doing 13.25,
13.50, 13.75 etc...

On Wed, Jun 18, 2008 at 4:05 PM, Curtis Vaughan <[EMAIL PROTECTED]> wrote:
> I was wondering if there was a way to make backuppc backup laptops as the
> become available on the network. I don't want it to be dependent on the
> user (I saw something about users starting the process themselves using
> Unison).
> If there is no such thing, I could of course set a schedule for when
> certain laptops are in the office. But it would not be consistent.
>
> Thanks!
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> ___
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
>



-- 
Calvin Coolidge  - "I have never been hurt by what I have not said."

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Backing up laptop as available

2008-06-18 Thread Kurt Tunkko
Curtis Vaughan wrote:
> I was wondering if there was a way to make backuppc backup laptops as the 
> become available on the network.

I thought about the same procedure and as an enhancement backup Laptops 
when they are connected via (Open-)VPN.
While I had not enough time to explore this in detail a solution for 
your problem might be:

1) Check if your client-laptop has a certain IP
2) connects to the BackupPC-server vis SSH and request a backup from the 
command line (I think there is an option to make BackupPC starting a 
backup from the command line)

Assuming that your laptops are running Windows, you can use this batch 
file to run command based on the IP the client-PC has.
You could run this script in taskplaner or start it when after you made 
a connection to network. IBM Access Connections offers this feature.

- - 8< - -

@echo off
:: for error tracking, you should set echo on
:: This Script can be found at (german language):
:: http://www.supportnet.de/fresh/2005/12/id1211340.asp

IPCONFIG | FINDSTR "IP-Adress" >ip.tmp
FOR /F "tokens=2,3,4 delims=:. " %%a IN (ip.tmp) DO SET SubNet=%%a.%%b.%%c
DEL ip.tmp

IF %SubNet% == 192.168.178 GOTO F1
IF %SubNet% == 192.168.2 GOTO F2
GOTO ERR

:F1
:: Assuming that Subnet 192.168.178.* is your company address
ssh [EMAIL PROTECTED] COMMAND-TO-START-BACKUP-OF-CLIENT
GOTO END

:F2
:: Assuming that subnet 192.168.2.* is another subnet
echo ANOTHER COMMAND THAT SHOULD BE RUN, IN THIS SUBNET
GOTO END

:ERR
echo There has been an error, or your client is in another subnet.
GOTO END

:END
pause
:: You can also delete the line above


- Kurt


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Windows 2000 server and windows 2003 server

2008-06-18 Thread David Kuntadi
On Wed, Jun 18, 2008 at 7:56 PM, Les Mikesell <[EMAIL PROTECTED]> wrote:
>
> If that works, the normal method should too.  I believe there are some
> versions of smbclient with bugs in command line parsing that have trouble
> with backuppc.  It's been mentioned on the list but I've forgotten the
> details.  Also, smbclient reads your default smb.conf file even though most
> of its settings relate to the server so it is possible to have problems that
> relate to the password server or similar global settings there.

That is what  thought. But I think the problem is backuppc need to
pass windows user name and password first before it could launch
rsync, which is I do not know how to do it. Looks like the normal way
of rsync require windows "already open".

Regards,
David

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] problem with interface web

2008-06-18 Thread David Kuntadi
What username and password you ausing? It is the default created by
backuppc or you create your own?
Make sure you record correctly the username and password of
administrator created when you install backuppc. If you did not record
it, try to run in terminal:

sudo dpkg-reconfigure backuppc

and see carefully what is the username and password of the administrator.

Regards,
David
On Wed, Jun 18, 2008 at 9:06 PM, fatima ech-charif
<[EMAIL PROTECTED]> wrote:
>  hi
>
> i use lighttpd as server for backuppc in ubuntu 7.10 gusty
>
> and i can't get interface web ,it couldn't accept my user and password
>
> when i use this command  tail -f /var/log/lighttpd/error.log
>
> for having error list i got that:
>
>  2008-06-18 14:15:05: (log.c.75) server started
> 2008-06-18 14:16:00: (http_auth.c.1138) digest: auth failed for admin
> wrong password
> 2008-06-18 14:16:22: (http_auth.c.1138) digest: auth failed for admin
> wrong password
> 2008-06-18 14:41:11: (server.c.1467) server stopped by UID = 0 PID = 6494
> 2008-06-18 14:41:11: (log.c.75) server started
> 2008-06-18 14:42:09: (http_auth.c.1138) digest: auth failed for admin
> wrong password
> 2008-06-18 14:51:20: (connections.c.280) SSL: 1 error:140780E5:SSL
> routines:SSL23_READ:ssl handshake failure
> 2008-06-18 14:52:21: (server.c.1467) server stopped by UID = 0 PID = 6554
> 2008-06-18 14:52:21: (log.c.75) server started
> 2008-06-18 14:52:43: (http_auth.c.1138) digest: auth failed for admin
> wrong password
>
>
>
> *** my password is small  < 8
>
> thanks
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> ___
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
>
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Backing up laptop as available

2008-06-18 Thread Les Mikesell
mark k wrote:
> You could just setup an aggressive wake up schedule, and adjust the
> black out schedule for those clients accordingly, of course it would
> fail every time the wake up schedule tried to backup that client. You
> can set it to wake up every 15 minutes if you want by doing 13.25,
> 13.50, 13.75 etc...
> 

The blackout schedule only takes effect after PCs have been determined 
to be available outside of it for several days.  For intermittently 
connected laptops that may be never.  If they are DHCP-addressed, you 
need to include the network ranges to search in  $Conf{DHCPAddressRanges}.

-- 
   Les Mikesell
[EMAIL PROTECTED]


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Windows 2000 server and windows 2003 server

2008-06-18 Thread Jim McNamara
I have found that rsyncd usually needs to be run with administrator rights.
Trying to get it to run as a regular user or a system account has always
failed for me. With your connection refused message, I suspect that rsyncd
is not running at all. try either using nmap or telnetting to the windows
box at port 873. If those fail or don't show activity at port 873, rsyncd
isn't running on the windows box, so there is nothing for the backuppc
machine to connect to.

Most likely, you'll have much better backups with rsyncd instead of samba,
so I'd encourage you to get that working.

Peace,
Jim

On Wed, Jun 18, 2008 at 8:40 PM, David Kuntadi <[EMAIL PROTECTED]> wrote:

> On Wed, Jun 18, 2008 at 7:56 PM, Les Mikesell <[EMAIL PROTECTED]>
> wrote:
> >
> > If that works, the normal method should too.  I believe there are some
> > versions of smbclient with bugs in command line parsing that have trouble
> > with backuppc.  It's been mentioned on the list but I've forgotten the
> > details.  Also, smbclient reads your default smb.conf file even though
> most
> > of its settings relate to the server so it is possible to have problems
> that
> > relate to the password server or similar global settings there.
>
> That is what  thought. But I think the problem is backuppc need to
> pass windows user name and password first before it could launch
> rsync, which is I do not know how to do it. Looks like the normal way
> of rsync require windows "already open".
>
> Regards,
> David
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> ___
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
>
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Windows 2000 server and windows 2003 server

2008-06-18 Thread David Kuntadi
On Thu, Jun 19, 2008 at 12:03 PM, Jim McNamara <[EMAIL PROTECTED]> wrote:
> I have found that rsyncd usually needs to be run with administrator rights.
> Trying to get it to run as a regular user or a system account has always
> failed for me. With your connection refused message, I suspect that rsyncd
> is not running at all. try either using nmap or telnetting to the windows
> box at port 873. If those fail or don't show activity at port 873, rsyncd
> isn't running on the windows box, so there is nothing for the backuppc
> machine to connect to.
>
> Most likely, you'll have much better backups with rsyncd instead of samba,
> so I'd encourage you to get that working.

It is true. I have problem with Samba Character setting now, trying to
figure out.

When I try to run rsyncd using administrator account (not
localsystem), it could not be started. When I use LocalSystem, it
actually did not but without any notice.

Is there any instruction to troubleshoot rsyncd?

Regards,
David

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/