Re: [BackupPC-users] Consecutive BackupPC_archiveStart calling for the same archive host is not executing

2009-12-17 Thread Jose Torres
Hello Again!

 

It seems that the answer to this is question is not a challenge; no one has
reply.

 

Please help!

 

From: Jose Torres [mailto:jetor...@conecodepr.com] 
Sent: Monday, December 14, 2009 2:40 PM
To: BackupPC-users@lists.sourceforge.net
Subject: [BackupPC-users] Consecutive BackupPC_archiveStart calling for the
same archive host is not executing

 

Hello!

 

I am executing in a bash script the following consecutive BackupPC command

/scriptpath/BackupPC_archiveStart localhost backuppc server1

/scriptpath/BackupPC_archiveStart localhost backuppc server2

/scriptpath/BackupPC_archiveStart localhost backuppc server3

 

localhost is the archive host, and server1, server2, server3 are hosts being
backup prior to the executing of this script.

 

I could have instead:

 

/scriptpath/BackupPC_archiveStart localhost backuppc server1 server2 server3

 

But I want to execute for each server an ArchivePostUserCmd so then I have
to do the archive for each host individually.

 

The problem is that each request is being done as appears on the BackupPC
log but only one (the first request) is executed.

So I end with the archiving of only server1 backups.

 

Any light will be appreciated.

 

 

 

--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev ___
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] Consecutive BackupPC_archiveStart calling for the same archive host is not executing

2009-12-17 Thread Jose Torres
The dumps are running perfectly.  What I need is to copy the dumps to a NTFS
NAS drive (not a NAS server).  Tar requires hardlinks to be supported by the
destination drive/partition and NTFS NAS does not support it. Archive mode
does support NTFS NAS without hardlinks.

The archive executes correctly when the three servers are included in the
parameter, but execute the ArchivePostUserCmd only once.

There is got to be a way to request the archive for each host consecutively.
Maybe adding some type of delay between request, but how much?  Or other
trick?



-Original Message-
From: Les Mikesell [mailto:lesmikes...@gmail.com] 
Sent: Thursday, December 17, 2009 3:55 PM
To: General list for user discussion, questions and support
Subject: Re: [BackupPC-users] Consecutive BackupPC_archiveStart calling for
the same archive host is not executing

Jose Torres wrote:
 Hello Again!
 
  
 
 It seems that the answer to this is question is not a challenge; no one 
 has reply.
 
  
 
 Please help!
 
  
 
 *From:* Jose Torres [mailto:jetor...@conecodepr.com]
 *Sent:* Monday, December 14, 2009 2:40 PM
 *To:* BackupPC-users@lists.sourceforge.net
 *Subject:* [BackupPC-users] Consecutive BackupPC_archiveStart calling 
 for the same archive host is not executing
 
  
 
 Hello!
 
  
 
 I am executing in a bash script the following consecutive BackupPC command
 
 /scriptpath/BackupPC_archiveStart localhost backuppc server1
 
 /scriptpath/BackupPC_archiveStart localhost backuppc server2
 
 /scriptpath/BackupPC_archiveStart localhost backuppc server3
 
  
 
 localhost is the archive host, and server1, server2, server3 are hosts 
 being backup prior to the executing of this script.
 
  
 
 I could have instead:
 
  
 
 /scriptpath/BackupPC_archiveStart localhost backuppc server1 server2
server3
 
  
 
 But I want to execute for each server an ArchivePostUserCmd so then I 
 have to do the archive for each host individually.
 
  
 
 The problem is that each request is being done as appears on the 
 BackupPC log but only one (the first request) is executed.
 
 So I end with the archiving of only server1 backups.
 
  
 
 Any light will be appreciated.

Why don't you ignore the archive setup and use your own scripts based on 
BackupPC_tarCreate so you have complete control?

-- 
  Les Mikesell
   lesmikes...@gmail.com


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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/


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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] Consecutive BackupPC_archiveStart calling for the same archive host is not executing

2009-12-17 Thread Les Mikesell
Jose Torres wrote:
 The dumps are running perfectly.  What I need is to copy the dumps to a NTFS
 NAS drive (not a NAS server).  Tar requires hardlinks to be supported by the
 destination drive/partition and NTFS NAS does not support it. Archive mode
 does support NTFS NAS without hardlinks.

Yes, because archives are just an invocation of BackupPC_tarCreate to 
generate a tar image with some options to pipe through gzip and split. 
If you are using a script, just do it all in a script and you can do 
whatever you want.  All you are getting out of the archivehost setup is 
a small pipeline of commands your cron job can execute itself just as well.

-- 
   Les Mikesell
lesmikes...@gmail.com


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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] Consecutive BackupPC_archiveStart calling for the same archive host is not executing

2009-12-17 Thread Jose Torres
I will look for a tarCreate example to see if I can mimic the archive agent.
The logs at BackupPC are important for me.
If not, I guess will post the question again.

Thanks for your interest.

-Original Message-
From: Les Mikesell [mailto:lesmikes...@gmail.com] 
Sent: Thursday, December 17, 2009 5:32 PM
To: General list for user discussion, questions and support
Subject: Re: [BackupPC-users] Consecutive BackupPC_archiveStart calling for
the same archive host is not executing

Jose Torres wrote:
 The dumps are running perfectly.  What I need is to copy the dumps to a
NTFS
 NAS drive (not a NAS server).  Tar requires hardlinks to be supported by
the
 destination drive/partition and NTFS NAS does not support it. Archive mode
 does support NTFS NAS without hardlinks.

Yes, because archives are just an invocation of BackupPC_tarCreate to 
generate a tar image with some options to pipe through gzip and split. 
If you are using a script, just do it all in a script and you can do 
whatever you want.  All you are getting out of the archivehost setup is 
a small pipeline of commands your cron job can execute itself just as well.

-- 
   Les Mikesell
lesmikes...@gmail.com



--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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/


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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] Consecutive BackupPC_archiveStart calling for the same archive host is not executing

2009-12-14 Thread Jose Torres
Hello!

 

I am executing in a bash script the following consecutive BackupPC command

/scriptpath/BackupPC_archiveStart localhost backuppc server1

/scriptpath/BackupPC_archiveStart localhost backuppc server2

/scriptpath/BackupPC_archiveStart localhost backuppc server3

 

localhost is the archive host, and server1, server2, server3 are hosts being
backup prior to the executing of this script.

 

I could have instead:

 

/scriptpath/BackupPC_archiveStart localhost backuppc server1 server2 server3

 

But I want to execute for each server an ArchivePostUserCmd so then I have
to do the archive for each host individually.

 

The problem is that each request is being done as appears on the BackupPC
log but only one (the first request) is executed.

So I end with the archiving of only server1 backups.

 

Any light will be appreciated.

 

 

 

--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
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/