Re: [Bacula-users] stuck job blocks all queue

2010-01-13 Thread Daniel De Marco
* Dan Langille  [01/13/2010 20:03]:
> I think you need to read up on 'concurrent jobs'.
> "If you want to run concurrent jobs you should keep these points in mind:
>  * See Running Concurrent Jobs on how to setup concurrent jobs.
>  * Bacula concurrently runs jobs of only one priority at a time. It 
> will not simultaneously run a priority 1 and a priority 2 job. "

I see, I tought that since the first job was stuck it wouldn't block the
queue and the above would not apply, but thinking about it, it makes sense. 

So it is not possible to have a workaround or a different configuration
so that a stuck job would not block the queue??

Thanks, Daniel.


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] bacula 3.0.3 maintain ctime on restored files?

2010-01-13 Thread Steve Costaras



On 01/13/2010 20:36, Dan Langille wrote:

Steve Costaras wrote:
Ok, found out why when I do a restore of files bacula keeps thinking 
that they are 'new' and will back them up again.   Seems that bacula 
changes ctime to the time of the restore of the file not the original 
ctime.   atime & mtime are properly set on the files at restore but 
not ctime.


It seems? Have you verified by looking at ctime?

What OS?


Yes, sorry for the ambiguity.   ctime is set to the time of the restore 
of the particular file.   atime/mtime show that the times are set to the 
original file's times.


OS is linux
Linux loki 2.6.24-26-server #1 SMP Tue Dec 1 18:26:43 UTC 2009 x86_64 
GNU/Linux


file system is XFS; using SQLlite3 as the database but that shouldn't 
matter here.



I didn't see anything in the on-line docs, is there a flag in the 
fileset directive to keep ALL time values (atime, mtime, ctime) to be 
exactly as they were on the original file when doing a restore?


(I did see the keepatime flag but from reading that only affects atime?)


"Note, if you use this feature, when Bacula resets the access time, 
the change time (st_ctime) will automatically be modified by the 
system, so on the next incremental job, the file will be backed up 
even if it has not changed. As a consequence, you will probably also 
want to use mtimeonly = yes as well as keepatime (thanks to Rudolf 
Cejka for this tip). "


I saw that comment which is why I mentioned it as what I'm seeing is the 
opposite.  I do not have keepatime set at all and it IS being set to 
current time at the time of restore.


-
FileSet {
  Name = "loki-FileSet"
  Ignore FileSet Changes = yes
  Include {
Options {
  accurate=mcs1
  checkfilechanges=yes
  hardlinks=yes
  noatime=yes
  onefs=yes
  recurse=yes
  signature=SHA1
  sparse=yes
  verify=pns1
}
File = /
File = /boot
File = /home
File = /var/ftp
  }
  Exclude {
File = /cdrom
File = /dev
File = /lost+found
File = /media
File = /opt/bacula/var/bacula/spool
File = /opt/bacula/var/bacula/working
File = /proc
File = /sys
File = /tmp
File = /var/ftp/tmp
File = /var/lock
File = /var/run
File = /var/tmp
File = /.fsck
File = /.journal
  }
}


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] bacula 3.0.3 maintain ctime on restored files?

2010-01-13 Thread Dan Langille
Steve Costaras wrote:
> Ok, found out why when I do a restore of files bacula keeps thinking 
> that they are 'new' and will back them up again.   Seems that bacula 
> changes ctime to the time of the restore of the file not the original 
> ctime.   atime & mtime are properly set on the files at restore but not 
> ctime.

It seems? Have you verified by looking at ctime?

What OS?

> I didn't see anything in the on-line docs, is there a flag in the 
> fileset directive to keep ALL time values (atime, mtime, ctime) to be 
> exactly as they were on the original file when doing a restore?
> 
> (I did see the keepatime flag but from reading that only affects atime?)

"Note, if you use this feature, when Bacula resets the access time, the 
change time (st_ctime) will automatically be modified by the system, so 
on the next incremental job, the file will be backed up even if it has 
not changed. As a consequence, you will probably also want to use 
mtimeonly = yes as well as keepatime (thanks to Rudolf Cejka for this 
tip). "



--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] bacula 3.0.3 maintain ctime on restored files?

2010-01-13 Thread Steve Costaras

Ok, found out why when I do a restore of files bacula keeps thinking 
that they are 'new' and will back them up again.   Seems that bacula 
changes ctime to the time of the restore of the file not the original 
ctime.   atime & mtime are properly set on the files at restore but not 
ctime.

I didn't see anything in the on-line docs, is there a flag in the 
fileset directive to keep ALL time values (atime, mtime, ctime) to be 
exactly as they were on the original file when doing a restore?

(I did see the keepatime flag but from reading that only affects atime?)


Steve

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] stuck job blocks all queue

2010-01-13 Thread Dan Langille
Daniel De Marco wrote:
> Hi,
> 
> I have a weird configuration problem with bacula (3.0.2). I looked
> through the manual, the faq and the mailing list archives, but my
> searches couldn't come up with any relevant info.
> 
> If one of the jobs in my queue gets stuck "waiting for an appendable
> volume" all the jobs after that one are blocked and do not run until I
> label a new volume for the original job. This happens even if the jobs
> have different Pools, Storage, Storage devices and Storage Media Type. 
> I was expecting the original job to get stuck, but for the others to
> continue unaffected. 
> 
> Here's one example:
> 17544 FullBK-wakko.2010-01-13_17.27.09_03 is waiting for an appendable 
> Volume
> 17545 Increme  BK-mailserver.2010-01-13_17.28.09_04 is waiting for higher 
> priority jobs to finish
> 
> BK-mailserver (priority = 8) is waiting for BK-wakko (priority = 10) to
> be completed even if it should be possible for it to proceed.
> Is there any way to achieve this behaviour?

I think you need to read up on 'concurrent jobs'.

http://www.bacula.org/en/rel-manual/Configuring_Director.html#SECTION00143

"If you want to run concurrent jobs you should keep these points in mind:

 * See Running Concurrent Jobs on how to setup concurrent jobs.

 * Bacula concurrently runs jobs of only one priority at a time. It 
will not simultaneously run a priority 1 and a priority 2 job. "


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] archive support?

2010-01-13 Thread Kelvin Raywood
> Thomas Wakefield wrote:
>>
> Take a directory, dump it to tape, and it will live forever (roughly
> 5-10 years) on tape.  And the copy on disk will be deleted.  But if
> needed, we could pull the copy back from tape.  We could possibly
> write 2 copies to tape for redundancy.
> ...

>>> Thanks for all the answers.  Basically it sounds like bacula
>>> doesn't have anything for native archive support which is what i
>>> expected.  So i will do something along the lines of what
>>> everyone else does.
> 

Dan Langille wrote:
> I don't know how to reconcile your statements with the replies.
> 
> What, specifically, is missing from what you've heard?

I think for the case of "archive files and remove from disk",
then Bacula, can already handle it with an appropriate long retention 
times as described in the other posts.  The file records will remain in 
the database but that's not a problem as those files aren't part of your 
regular backup.

The more general case of "archiving what you regularly backup" is to 
periodically do a virtual full-backup to some tapes which are then 
removed.  In those cases you want to export the database records that 
correspond to the archive jobs and remove them from your regular-backup 
catalog.  You would them import those records into a separate archive 
catalog.   This way, a normal restore would come from your regular 
backup media and your regular-backup catalog would not grow 
indefinitely. If you need to restore from your archive, you would bacula 
to the archive catalog.

This requires item 22 on the current project list.

"Item 22: Ability to import/export Bacula database entities"

In the voting last May I gave this item highest priority.

Kel Raywood

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Building from source on Fedora 12

2010-01-13 Thread Robert Hartzell
On 01/12/10 03:02 PM, Thomas Bennett wrote:
> you might want to try
>
> yum update openssl
>
>
> yum is the package manager for Fedora and will resolve dependencies.  You can
> also run
>
> yum deplist openssl |grep crypto
>
> which will probably show libcrypto.so.8 or newer and libk5crypto.so.3 or
> newer.  It shows these on my Fedora 11 installation 64bit.
>
> Also,
>
> man yum
>
> to see all of the options, like how to force a reinstall of a package.
>
>
> you might want to reinstall of openssl with yum
>
> yum reinstall openssl
>
> This might take care of any missing or messed up dependencies.
>
> Thomas
>
>
>
>
> On Tuesday 12 January 2010 12:35:14 Robert Hartzell wrote:
>> I've been asked by a friend to help setup bacula on a fedora 12 system.
>> Now I admit that I know next to nothing about linux... the last time I
>> installed a Linux system the distro was distributed a big stack of
>> floppys ;-)
>>
>> Note: bacula builds and runs fine when disabling openssl.
>>
>> The problem I having is related to openssl and crypto.c. The specific
>> error is:
>>
>> crypto.c: In function ‘ASN1_OCTET_STRING* openssl_cert_keyid(X509*)’:
>> crypto.c:333: error: invalid conversion from ‘const X509V3_EXT_METHOD*’
>> to ‘X509V3_EXT_METHOD*’
>>
>> and:
>>
>> "make[1]: *** No rule to make target `../lib/libbacpy.la', needed by
>> `bacula-sd'.  Stop."
>>
>> I'm pretty sure all the needed openssl and zlib pkgs are installed:
>>
>> libpathfinder-openssl.x86_64
>> libpathfinder-openssl-devel.x86_64
>> nss_compat_ossl.x86_64
>> openssl.x86_64 1.0.0-0.13.beta4.fc12
>> openssl-devel.x86_64
>> openssl-perl.x86_64
>> openssl-static.x86_64
>>
>> zlib.x86_641.2.3-23.fc12
>> @anaconda-InstallationRepo-200911081904.x86_64
>> zlib-devel.x86_64  1.2.3-23.fc12
>> @anaconda-InstallationRepo-200911081904.x86_64
>> zlib-static.x86_64 1.2.3-23.fc12  @fedora
>>
>> google has turned up a few related posts but no solutions that I have
>>   found.
>>
>> So can any of you Linux/fedora guru's out there point me towards a
>>   solution?
>>
>> TIA, Robert
>>
>> P.S. I know someone will probably say just install rpm's but I would
>> rather build from source if possible since I'm not at all familiar with
>> the rpm way of life.
>>
>

Thanks for the pointers... Will try them out this weekend and see what 
happens.

-- 
   Robert W Hartzell
bear at rwhartzell.net
   RwHartzell.Net

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Question about restores and multiple pools

2010-01-13 Thread Jon Schewe
On 01/13/2010 02:09 PM, Martin Simmons wrote:
>> On Tue, 12 Jan 2010 16:38:08 -0600, Jon Schewe said:
>> 
>> I have standard backups (incremental, differential, full) going to tape
>> using a pool named Default. I have weekly full backups going to an
>> external drive using a pool named Offsite. Now when I do a restore I
>> would like bacula to only consider the backups in the Default pool and
>> to ignore those in the Offsite pool. Is this possible?
>> 
> No.
>
>   
That's too bad. Can it be specified by job? Since I have different jobs
for offsite and standard, one could possibly differentiate based upon that.

>   
>> Related question: When bacula is considering which is the most recent
>> full backup to compute differences for a differential backup will it
>> consider all job definitions and thus consider my Offsite pool? Or will
>> it just consider just the currently running Job definition and thus use
>> only the Default pool (tapes)?
>> 
> It will consider the most recent occurrence of the named job with level Full.
>
> If you have a single job definition doing both standard and offsite backups,
> then there is a danger that the differential will be based relative to the
> offsite backup.  It might be better to define a separate job for the offsite
> backup, using the same client and fileset as the regular job.
>   
I have separate job definitions, so I should OK here.

-- 
Jon Schewe | http://mtu.net/~jpschewe
If you see an attachment named signature.asc, this is my digital
signature. See http://www.gnupg.org for more information.

For I am convinced that neither death nor life, neither angels nor
demons, neither the present nor the future, nor any powers,
neither height nor depth, nor anything else in all creation, will
be able to separate us from the love of God that is in Christ
Jesus our Lord. - Romans 8:38-39


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] stuck job blocks all queue

2010-01-13 Thread Daniel De Marco
Hi,

I have a weird configuration problem with bacula (3.0.2). I looked
through the manual, the faq and the mailing list archives, but my
searches couldn't come up with any relevant info.

If one of the jobs in my queue gets stuck "waiting for an appendable
volume" all the jobs after that one are blocked and do not run until I
label a new volume for the original job. This happens even if the jobs
have different Pools, Storage, Storage devices and Storage Media Type. 
I was expecting the original job to get stuck, but for the others to
continue unaffected. 

Here's one example:
17544 FullBK-wakko.2010-01-13_17.27.09_03 is waiting for an appendable 
Volume
17545 Increme  BK-mailserver.2010-01-13_17.28.09_04 is waiting for higher 
priority jobs to finish

BK-mailserver (priority = 8) is waiting for BK-wakko (priority = 10) to
be completed even if it should be possible for it to proceed.
Is there any way to achieve this behaviour?

Thank you, Daniel.

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] problem restoring directory permissions

2010-01-13 Thread Mark Nienberg
On 1/12/2010 5:05 PM, Mark Nienberg wrote:

> In my test I used Replace Never. Testing now again with Replace Always
> works perfectly!  I'll reopen the bug report now that it should be
> reproducible.

Just to complete this thread:

http://bugs.bacula.org/view.php?id=1444

-- 
Mark Nienberg
Sent from an invalid address. Please reply to the group.


--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?

2010-01-13 Thread Jerome Alet
On Wed, Jan 13, 2010 at 01:53:25PM -0600, Jon Schewe wrote:
> On 1/13/10 1:49 PM, jerome alet wrote:
> >
> >
> Then my guess is that it'll work just fine. I've used generic barcode
> creators in the past and they've been OK too, just wondering if there
> was something special in there with sizing or something like that.

I think there could be something "special" : the LTO labels
specification is very precise wrt sizes, spacing, and error margins, so
I suppose the DLT labels specification can be different.

bye


--
Jérôme Alet -  - Centre de Ressources Informatiques
  Université de la Nouvelle-Calédonie - BPR4 - 98851 NOUMEA CEDEX
   Tél : +687 266754  Fax : +687 254829

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Question about restores and multiple pools

2010-01-13 Thread Martin Simmons
> On Tue, 12 Jan 2010 16:38:08 -0600, Jon Schewe said:
> 
> I have standard backups (incremental, differential, full) going to tape
> using a pool named Default. I have weekly full backups going to an
> external drive using a pool named Offsite. Now when I do a restore I
> would like bacula to only consider the backups in the Default pool and
> to ignore those in the Offsite pool. Is this possible?

No.


> Related question: When bacula is considering which is the most recent
> full backup to compute differences for a differential backup will it
> consider all job definitions and thus consider my Offsite pool? Or will
> it just consider just the currently running Job definition and thus use
> only the Default pool (tapes)?

It will consider the most recent occurrence of the named job with level Full.

If you have a single job definition doing both standard and offsite backups,
then there is a danger that the differential will be based relative to the
offsite backup.  It might be better to define a separate job for the offsite
backup, using the same client and fileset as the regular job.

__Martin

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] SQL query

2010-01-13 Thread Martin Simmons
> On Wed, 13 Jan 2010 14:18:18 +0100, David Dumortier said:
> Importance: Normal
> 
> Hi all,
> 
> I try to query MySQL to obtain all the date of backup for a file.
> I used this but have only the last backup :
> 
> :List all backup for a File with date :
> *Enter Client :
> *Enter Filename (no path) :
> SELECT Client.Name as Client,
>   Path.Path,Filename.Name, Job.JobId as JobId,
>   StartTime
>  FROM Client,Job,File,Filename,Path
>  WHERE Client.ClientId=Job.ClientId
>AND Job.JobId=File.JobId
>AND Path.PathId=File.PathId AND Filename.FilenameId=File.FilenameId
>AND Client.Name='%1'
>AND Filename.Name='%2'
>  ORDER BY Path.Path;

That should work.

Maybe your catalog has been pruned, so the file records are no longer there?

__Martin

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?

2010-01-13 Thread Jon Schewe
On 1/13/10 1:49 PM, jerome alet wrote:
> Hi,
>
>   
>> 
>> From: Jon Schewe 
>> Sent: Wed Jan 13 23:32:14 NCT 2010
>> To: Ken Barclay 
>> Subject: Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?
>>
>>
>> Any reason this is limited to LTO? I would think I could use it for my
>> DLT tapes too.
>> 
> The only reason at the time I wrote this is that I only had the complete 
> specification for LTO labels, not DLT ones.
>
> The second reason right now is that I don't have much time to work on this 
> anymore, so only small modifications will be implemented (like a list of 
> color schemes for alpha characters, for example)
>
>   
Then my guess is that it'll work just fine. I've used generic barcode
creators in the past and they've been OK too, just wondering if there
was something special in there with sizing or something like that.

-- 
Jon Schewe | http://mtu.net/~jpschewe
If you see an attachment named signature.asc, this is my digital
signature. See http://www.gnupg.org for more information.

For I am convinced that neither death nor life, neither angels nor
demons, neither the present nor the future, nor any powers,
neither height nor depth, nor anything else in all creation, will
be able to separate us from the love of God that is in Christ
Jesus our Lord. - Romans 8:38-39


--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?

2010-01-13 Thread jerome alet
Hi,

> 
> From: Jon Schewe 
> Sent: Wed Jan 13 23:32:14 NCT 2010
> To: Ken Barclay 
> Subject: Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?
> 
> 
> Any reason this is limited to LTO? I would think I could use it for my
> DLT tapes too.

The only reason at the time I wrote this is that I only had the complete 
specification for LTO labels, not DLT ones.

The second reason right now is that I don't have much time to work on this 
anymore, so only small modifications will be implemented (like a list of color 
schemes for alpha characters, for example)

bye

Jerome Alet

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bnet receive challenge response error ? Authentication errors...

2010-01-13 Thread Martin Simmons
> On Wed, 13 Jan 2010 17:16:21 +0100, Simon Spring said:
> 
> Hi all
> 
> I do have a quite misterious and headacking problem with one of my  
> fresh hosts, which
> i'd like to integrate with bacula.
> 
> Whatever i try or do, i cannot connect to the bacula-fd on my client,  
> i allways get the message below:
> 
> *
> 13-Jan 16:57 godzilla-dir JobId 0: Fatal error: Unable to authenticate  
> with File daemon at "theclient.dom.local:9102". Possible causes:
> Passwords or names not the same or
> Maximum Concurrent Jobs exceeded on the FD or
> FD networking messed up (restart daemon).
> Please see http://www.bacula.org/rel-manual/ 
> faq.html#AuthorizationErrors for help.
> **
> What i am able: telnet to the host (by ip and fqdn) on the respective  
> port 9102 without problems.
> 
> I ensured at least 5 times (and let it countercheck by collegue), that  
> passwords do match on both hosts/sides (yes, they do).
> 
> There is no firewall active on both sides, hosts.allow allows  
> anything, host and ip resolve (ping etc.) vicecersa correctly.
> 
> Here is what i get from debug on the client:
> 
> $> bacula-fd -c /etc/bacula/bacula-fd.conf -v -s -d350 -f
> bacula-fd: filed_conf.c:438-0 Inserting director res: godzilla-mon
> gnadmin-fd: message.c:259-0 Copy message resource 809be78 to 8099a70
> gnadmin-fd: jcr.c:135-0 read_last_jobs seek to 188
> gnadmin-fd: jcr.c:142-0 Read num_items=0
> gnadmin-fd: pythonlib.c:113-0 No script dir. prog=FDStartUp
> gnadmin-fd: filed.c:225-0 filed: listening on port 9102
> gnadmin-fd: bnet_server.c:96-0 Addresses host[ipv4:192.168.99.24:9102]
> gnadmin-fd: bnet.c:667-0 who=client host=192.168.99.10 port=36387
> gnadmin-fd: jcr.c:617-0 OnEntry JobStatus=gnadmin-fd: jcr.c:637-0  
> OnExit JobStatus=C set=C
> gnadmin-fd: find.c:81-0 init_find_files ff=809c488
> gnadmin-fd: job.c:233-0  gnadmin-fd: job.c:249-0 Executing Hello command.
> gnadmin-fd: job.c:359-0 Calling Authenticate
> gnadmin-fd: cram-md5.c:73-0 send: auth cram-md5  
> <696202879.1263398...@gnadmin-fd> ssl=0
> gnadmin-fd: cram-md5.c:89-0 Bnet receive challenge response error.

This line is the problem -- there was an error receiving the reply for some
reason.  Unfortunately, Bacula doesn't print the error message.

You could try attaching strace to the bacula-fd while connecting, to see if
there is a errno reported in one of the socket syscalls.


> gnadmin-fd: authenticate.c:131-0 cram_auth failed for 192.168.3.10
> gnadmin-fd: job.c:252-0 Quit command loop. Canceled=0
> gnadmin-fd: runscript.c:103-0 runscript: running all RUNSCRIPT object  
> (ClientAfterJob) JobStatus=C
> gnadmin-fd: pythonlib.c:237-0 No startup module.
> gnadmin-fd: job.c:343-0 Calling term_find_files
> gnadmin-fd: job.c:346-0 Done with term_find_files
> gnadmin-fd: mem_pool.c:377-0 garbage collect memory pool
> gnadmin-fd: job.c:348-0 Done with free_jcr
> 
> 192.168.99.10 is bacula server deamon
> 192.168.99.24 is the client

What is 192.168.3.10 (from the authenticate.c:131-0 line above)?  Maybe you
have routing problems?

__Martin

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Network error with FD during Backup: ERR=Connection timed out

2010-01-13 Thread Josh Fisher

Carlo Filippetto wrote:
> Hi all,
> I have a problem when backup windows 2008 64 bit, with Exchange 2007 
> (bacula 3.0.3 on Centos 5.3)
>
> On google I found and insert
>   Heartbeat Interval = 1 minutes
>
> on both client and server, but only one time the full backup goes 
> well, after all the other faild with the erro in the title
>
> What can I do?
>

I have had this problem before. It has always been related to the NIC or 
NIC driver in the client machine. Years ago this happened with the NIC 
built into the NFS4 Nvidia chipset and was fixed by a driver update from 
Nvidia. In a Lenovo laptop I believe power saving modes in the Windows 
NIC driver may have caused this. If the client doesn't transmit for a 
while because it is busy with compression or building a VSS snapshot 
then the driver may turn off the power to the NIC transmitter. That is 
just a guess, but a USB external NIC worked perfectly in the same 
machine. Start with disabling any power saving features of the NIC in 
the Windows machine. Try another NIC if possible. See if there is an 
updated NIC driver available.

> Grazie, ciao
>
> Carlo
>

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] bacula-fd on windows: "... is a different filesystem. Will not descend from...."

2010-01-13 Thread Martin Simmons
> On Wed, 13 Jan 2010 17:13:57 +0100, Carlo Filippetto said:
> 
> The same is with Linux,
> If I remember well.. somewhere I read something like ... it skips
> those files that are not 'valid' or file that the system recreates at
> startup
> 
> 
> You can try to set
> onefs=no

I think that is a bad idea, because it will generate two separate copies of
the files and restore will not work correctly.

__Martin

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] bacula-fd on windows: "... is a different filesystem. Will not descend from...."

2010-01-13 Thread Josh Fisher

Gavin McCullagh wrote:
> Hi,
>
> we're running backups of a few Windows desktops with Bacula.  On Windows
> Vista and Windows 7, you tend to get a bunch of messages like this:
>
> jm-fd JobId 2526:  c:/Users/johnm/Documents/My Videos is a different 
> filesystem. Will not descend from c:/Users/johnm/ into 
> c:/Users/johnm/Documents/My Videos
> jm-fd JobId 2526:  c:/Users/johnm/Local Settings is a different 
> filesystem. Will not descend from c:/Users/johnm/ into c:/Users/johnm/Local 
> Settings
> jm-fd JobId 2526:  c:/Users/johnm/My Documents is a different filesystem. 
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/My Documents
> jm-fd JobId 2526:  c:/Users/johnm/NetHood is a different filesystem.  
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/NetHood
> jm-fd JobId 2526:  c:/Users/johnm/PrintHood is a different filesystem.  
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/PrintHood 
>
> I've noticed mention on lists that these folders are some sort of symlinks
> though I'm not clear where to -- c:\ seems to be the only filesystem on the
> box.  Can someone explain exactly what these messages are telling us?
> Should we be at all concerned that they're not being backed up?
>   

They are junction points. Windows uses a multi-root directory hierarchy, 
where C:\, D:\, etc. are the roots, as opposed to the *nix single root 
directory hierarchy where / is the only root. Any directory under one of 
the roots that has a NTFS filesystem mounted may be the mountpoint for a 
different filesystem. Windows calls these "junction points". Windows 
implements directory symlinks as junction points, the only difference 
being that rather than a completely different filesystem being mounted 
at the junction point, a subsection (directory) of the same filesystem 
is re-mounted at the junction point. Therefore, Bacula sees these 
junction points as a different filesystem, (as it should).

For example, what is now c:/Users/johnm/Documents on Vista/7 used to be 
c:/Documents and Settings/johnm/My Documents on XP. There were enough 
compatibility problems with old 3rd party software hard coding the "My 
Documents" directory name that, for backward compatibility reasons, 
Microsoft put in a symlink (junction point) named "c:/Users/johnm/My 
Documents" that points to the Vista/7 equivalent "c:/Users/johnm/Documents".

You should not be concerned. Either ignore the messages or else exclude 
those directory names in the FileSet  used by Vista/7 clients.

> On a Windows XP machine, we also get some of these, but fewer:
>
> tomasv200-fd JobId 2539: 
> c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a
>  is a different filesystem. Will not descend from c:/ into 
> c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a
> tomasv200-fd JobId 2539: 
> c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a is a 
> different filesystem. Will not descend from c:/ into 
> c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a
>
>
> Many thanks for any illumination,
>
> Gavin
>
>
> --
> 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 
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>   

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula on a QNAP TS-439U-SP

2010-01-13 Thread Fahrer, Julian
I've seen a bacula package für synology nas systems

-Ursprüngliche Nachricht-
Von: Meda [mailto:dfonta...@rosebud.fr] 
Gesendet: Mittwoch, 13. Januar 2010 18:07
An: bacula-users@lists.sourceforge.net
Betreff: Re: [Bacula-users] Bacula on a QNAP TS-439U-SP



Dan Langille wrote:
> 
> 
> Any NAS?
> 
> FreeNAS allows you to install Bacula.
> 

I want keep QNAP's system and install bacula with ipkg.
-- 
View this message in context: 
http://old.nabble.com/Bacula-on-a-QNAP-TS-439U-SP-tp27145471p27148205.html
Sent from the Bacula - Users mailing list archive at Nabble.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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Question about recycle = no

2010-01-13 Thread Jon Schewe
On 1/12/10 5:40 PM, Timo Neuvonen wrote:
>> So I'm backing data up to an external drive. I have maximum volume jobs
>> set to 1, to ensure that each job uses a different volume. I would also
>> like it such that volumes are not reused, so I assume I should set
>> recycle to no. Now the question is, when the retention period comes up,
>> will the volumes that are past the retention period be deleted? If they
>> are not, I'll run out of space on my external drive.
>>
>> 
> Bacula does not delete the volumes automatically. If recycling were allowed, 
> the volumes would be re-used, but never actually deleted in that case 
> either.
>
> If you need to delete the volumes, you have to do it manually, or using some 
> sort of admin job or script. And before deleting the volume files, also 
> delete the volumes from the catalog to prevent the catalog growing 
> unnecessarily.
>   
Has anyone written such a script to handle this?

-- 
Jon Schewe | http://mtu.net/~jpschewe
If you see an attachment named signature.asc, this is my digital
signature. See http://www.gnupg.org for more information.

For I am convinced that neither death nor life, neither angels nor
demons, neither the present nor the future, nor any powers,
neither height nor depth, nor anything else in all creation, will
be able to separate us from the love of God that is in Christ
Jesus our Lord. - Romans 8:38-39


--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula on a QNAP TS-439U-SP

2010-01-13 Thread Meda


Dan Langille wrote:
> 
> 
> Any NAS?
> 
> FreeNAS allows you to install Bacula.
> 

I want keep QNAP's system and install bacula with ipkg.
-- 
View this message in context: 
http://old.nabble.com/Bacula-on-a-QNAP-TS-439U-SP-tp27145471p27148205.html
Sent from the Bacula - Users mailing list archive at Nabble.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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bnet receive challenge response error ? Authentication errors...

2010-01-13 Thread Moray Henderson
Simon Spring wrote:
>Hi all
>
>I do have a quite misterious and headacking problem with one of my
>fresh hosts, which
>i'd like to integrate with bacula.
>
>Whatever i try or do, i cannot connect to the bacula-fd on my client,
>i allways get the message below:
>
>*
>13-Jan 16:57 godzilla-dir JobId 0: Fatal error: Unable to authenticate
>with File daemon at "theclient.dom.local:9102". Possible causes:
>Passwords or names not the same or
>Maximum Concurrent Jobs exceeded on the FD or
>FD networking messed up (restart daemon).
>Please see http://www.bacula.org/rel-manual/
>faq.html#AuthorizationErrors for help.
>**
>What i am able: telnet to the host (by ip and fqdn) on the respective
>port 9102 without problems.
>
>I ensured at least 5 times (and let it countercheck by collegue), that
>passwords do match on both hosts/sides (yes, they do).
>
>There is no firewall active on both sides, hosts.allow allows
>anything, host and ip resolve (ping etc.) vicecersa correctly.
>
>Here is what i get from debug on the client:
>
>$> bacula-fd -c /etc/bacula/bacula-fd.conf -v -s -d350 -f
>bacula-fd: filed_conf.c:438-0 Inserting director res: godzilla-mon
>gnadmin-fd: message.c:259-0 Copy message resource 809be78 to 8099a70
>gnadmin-fd: jcr.c:135-0 read_last_jobs seek to 188
>gnadmin-fd: jcr.c:142-0 Read num_items=0
>gnadmin-fd: pythonlib.c:113-0 No script dir. prog=FDStartUp
>gnadmin-fd: filed.c:225-0 filed: listening on port 9102
>gnadmin-fd: bnet_server.c:96-0 Addresses host[ipv4:192.168.99.24:9102]
>gnadmin-fd: bnet.c:667-0 who=client host=192.168.99.10 port=36387
>gnadmin-fd: jcr.c:617-0 OnEntry JobStatus=gnadmin-fd: jcr.c:637-0
>OnExit JobStatus=C set=C
>gnadmin-fd: find.c:81-0 init_find_files ff=809c488
>gnadmin-fd: job.c:233-0 gnadmin-fd: job.c:249-0 Executing Hello command.
>gnadmin-fd: job.c:359-0 Calling Authenticate
>gnadmin-fd: cram-md5.c:73-0 send: auth cram-md5
><696202879.1263398...@gnadmin-fd> ssl=0
>gnadmin-fd: cram-md5.c:89-0 Bnet receive challenge response error.
>gnadmin-fd: authenticate.c:131-0 cram_auth failed for 192.168.3.10
>gnadmin-fd: job.c:252-0 Quit command loop. Canceled=0
>gnadmin-fd: runscript.c:103-0 runscript: running all RUNSCRIPT object
>(ClientAfterJob) JobStatus=C
>gnadmin-fd: pythonlib.c:237-0 No startup module.
>gnadmin-fd: job.c:343-0 Calling term_find_files
>gnadmin-fd: job.c:346-0 Done with term_find_files
>gnadmin-fd: mem_pool.c:377-0 garbage collect memory pool
>gnadmin-fd: job.c:348-0 Done with free_jcr
>
>192.168.99.10 is bacula server deamon
>192.168.99.24 is the client
>
>bacula is on 2.4.2 on both sides, i tried with 2.4.4 on the client,
>with identical/same results.
>I'm using 2.6.18-6-686 / Debian GNU/Linux 4.0 underneath.
>
>With identical configfiles (except adresses of course) on other
>clients with identical/same releases, everything works, as expected.
>
>I tried reinstalling the client bacula-fd, with the same result.
>
>Any hint is very appreciated.
>
>Rgds

Does the password contain any characters outside the ASCII range 32-127?
If so, it might be a codepage conversion problem.

Monitor the authentication conversation with tcpdump or wireshark, and
compare between a working connection and the non-working one?

Set SELinux to permissive mode and try again?


Moray.
"To err is human.  To purr, feline"





--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bnet receive challenge response error ? Authentication errors...

2010-01-13 Thread Simon Spring - GoldNet GmbH
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all

I do have a quite misterious and headacking problem with one of my  
fresh hosts, which
i'd like to integrate with bacula.

Whatever i try or do, i cannot connect to the bacula-fd on my client,  
i allways get the message below:

*
13-Jan 16:57 godzilla-dir JobId 0: Fatal error: Unable to authenticate  
with File daemon at "theclient.dom.local:9102". Possible causes:
Passwords or names not the same or
Maximum Concurrent Jobs exceeded on the FD or
FD networking messed up (restart daemon).
Please see http://www.bacula.org/rel-manual/ 
faq.html#AuthorizationErrors for help.
**
What i am able: telnet to the host (by ip and fqdn) on the respective  
port 9102 without problems.

I ensured at least 5 times (and let it countercheck by collegue), that  
passwords do match on both hosts/sides (yes, they do).

There is no firewall active on both sides, hosts.allow allows  
anything, host and ip resolve (ping etc.) vicecersa correctly.

Here is what i get from debug on the client:

$> bacula-fd -c /etc/bacula/bacula-fd.conf -v -s -d350 -f
bacula-fd: filed_conf.c:438-0 Inserting director res: godzilla-mon
gnadmin-fd: message.c:259-0 Copy message resource 809be78 to 8099a70
gnadmin-fd: jcr.c:135-0 read_last_jobs seek to 188
gnadmin-fd: jcr.c:142-0 Read num_items=0
gnadmin-fd: pythonlib.c:113-0 No script dir. prog=FDStartUp
gnadmin-fd: filed.c:225-0 filed: listening on port 9102
gnadmin-fd: bnet_server.c:96-0 Addresses host[ipv4:192.168.99.24:9102]
gnadmin-fd: bnet.c:667-0 who=client host=192.168.99.10 port=36387
gnadmin-fd: jcr.c:617-0 OnEntry JobStatus=gnadmin-fd: jcr.c:637-0  
OnExit JobStatus=C set=C
gnadmin-fd: find.c:81-0 init_find_files ff=809c488
gnadmin-fd: job.c:233-0  ssl=0
gnadmin-fd: cram-md5.c:89-0 Bnet receive challenge response error.
gnadmin-fd: authenticate.c:131-0 cram_auth failed for 192.168.3.10
gnadmin-fd: job.c:252-0 Quit command loop. Canceled=0
gnadmin-fd: runscript.c:103-0 runscript: running all RUNSCRIPT object  
(ClientAfterJob) JobStatus=C
gnadmin-fd: pythonlib.c:237-0 No startup module.
gnadmin-fd: job.c:343-0 Calling term_find_files
gnadmin-fd: job.c:346-0 Done with term_find_files
gnadmin-fd: mem_pool.c:377-0 garbage collect memory pool
gnadmin-fd: job.c:348-0 Done with free_jcr

192.168.99.10 is bacula server deamon
192.168.99.24 is the client

bacula is on 2.4.2 on both sides, i tried with 2.4.4 on the client,  
with identical/same results.
I'm using 2.6.18-6-686 / Debian GNU/Linux 4.0 underneath.

With identical configfiles (except adresses of course) on other  
clients with identical/same releases, everything works, as expected.

I tried reinstalling the client bacula-fd, with the same result.

Any hint is very appreciated.

Rgds

Simon












-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAktN8dUACgkQFMrSEgQnfr2WDQCaA2oJElvjLEDcz3H/OWVqPhc2
vh0An0GC3pXZibFCuifDK9Schn97+Q2i
=OiRt
-END PGP SIGNATURE-

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula on a QNAP TS-439U-SP

2010-01-13 Thread Dan Langille
Meda wrote:
> Hello,
> 
> I m searching a NAS where i can install Bacula. I found the QNAP's NAS but i
> don't know if it's possible to install bacula on it.
> Do you have any experience with the QNAP's NAS  and Bacula ?

Any NAS?

FreeNAS allows you to install Bacula.

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] bacula-fd on windows: "... is a different filesystem. Will not descend from...."

2010-01-13 Thread Carlo Filippetto
The same is with Linux,
If I remember well.. somewhere I read something like ... it skips
those files that are not 'valid' or file that the system recreates at
startup


You can try to set
onefs=no

or in fileset define the path that it skips


CIAO, Carlo







2010/1/13 Gavin McCullagh :
> Hi,
>
> we're running backups of a few Windows desktops with Bacula.  On Windows
> Vista and Windows 7, you tend to get a bunch of messages like this:
>
> jm-fd JobId 2526:      c:/Users/johnm/Documents/My Videos is a different 
> filesystem. Will not descend from c:/Users/johnm/ into 
> c:/Users/johnm/Documents/My Videos
> jm-fd JobId 2526:      c:/Users/johnm/Local Settings is a different 
> filesystem. Will not descend from c:/Users/johnm/ into c:/Users/johnm/Local 
> Settings
> jm-fd JobId 2526:      c:/Users/johnm/My Documents is a different filesystem. 
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/My Documents
> jm-fd JobId 2526:      c:/Users/johnm/NetHood is a different filesystem.  
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/NetHood
> jm-fd JobId 2526:      c:/Users/johnm/PrintHood is a different filesystem.  
> Will not descend from c:/Users/johnm/ into c:/Users/johnm/PrintHood
>
> I've noticed mention on lists that these folders are some sort of symlinks
> though I'm not clear where to -- c:\ seems to be the only filesystem on the
> box.  Can someone explain exactly what these messages are telling us?
> Should we be at all concerned that they're not being backed up?
>
> On a Windows XP machine, we also get some of these, but fewer:
>
> tomasv200-fd JobId 2539: 
> c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a
>  is a different filesystem. Will not descend from c:/ into 
> c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a
> tomasv200-fd JobId 2539: 
> c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a is a 
> different filesystem. Will not descend from c:/ into 
> c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a
>
>
> Many thanks for any illumination,
>
> Gavin
>
>
> --
> 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
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] bacula-fd on windows: "... is a different filesystem. Will not descend from...."

2010-01-13 Thread Gavin McCullagh
Hi,

we're running backups of a few Windows desktops with Bacula.  On Windows
Vista and Windows 7, you tend to get a bunch of messages like this:

jm-fd JobId 2526:  c:/Users/johnm/Documents/My Videos is a different 
filesystem. Will not descend from c:/Users/johnm/ into 
c:/Users/johnm/Documents/My Videos
jm-fd JobId 2526:  c:/Users/johnm/Local Settings is a different filesystem. 
Will not descend from c:/Users/johnm/ into c:/Users/johnm/Local Settings
jm-fd JobId 2526:  c:/Users/johnm/My Documents is a different filesystem. 
Will not descend from c:/Users/johnm/ into c:/Users/johnm/My Documents
jm-fd JobId 2526:  c:/Users/johnm/NetHood is a different filesystem.  Will 
not descend from c:/Users/johnm/ into c:/Users/johnm/NetHood
jm-fd JobId 2526:  c:/Users/johnm/PrintHood is a different filesystem.  
Will not descend from c:/Users/johnm/ into c:/Users/johnm/PrintHood 

I've noticed mention on lists that these folders are some sort of symlinks
though I'm not clear where to -- c:\ seems to be the only filesystem on the
box.  Can someone explain exactly what these messages are telling us?
Should we be at all concerned that they're not being backed up?

On a Windows XP machine, we also get some of these, but fewer:

tomasv200-fd JobId 2539: 
c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a 
is a different filesystem. Will not descend from c:/ into 
c:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a
tomasv200-fd JobId 2539: 
c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a is a 
different filesystem. Will not descend from c:/ into 
c:/WINDOWS/assembly/GAC_MSIL/IEExecRemote/2.0.0.0__b03f5f7f11d50a3a


Many thanks for any illumination,

Gavin


--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?

2010-01-13 Thread Thomas Bennett
I am using the Dell TL2000 on Fedora 11 and Bacula 3.  The Dell TL2000 I have 
is actually an IBM ULT 3580 - TD4 with a Dell label on it.  It will show up 
identifying itself as the IBM with some hardware applications.  I've never had 
an issue with bacula the TL2000 using the combination described above since 
June 2009 and I used it with RedHat Enterprise Linux 5 earlier with Bacula 2.

Thomas



On Monday 07 September 2009 05:09:33 Bekker wrote:
> Hello,
> 
> We're planning on buying an LTO4 autochanger to meet our growing backup
> demands. I've found some postings to the mailing list concerning an
> LT2000, but it had some issues with Bacula at that time.
> 
> Does this autochanger work properly with Bacula at the moment ?
> 
> Kind regards,
> 
> Arno Bekker
> 
> 
> 
> 
> ---
> --- Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>  30-Day trial. Simplify your report design, integration and deployment -
>  and focus on what you do best, core application coding. Discover what's
>  new with Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
> 

-- 
==
Thomas McMillan Grant Bennett   Appalachian State University
Operations & Systems AnalystP O Box 32026
University LibraryBoone, North Carolina 28608
(828) 262 6587

Library Systems Help Desk: https://www.library.appstate.edu/help/
==

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula on a QNAP TS-439U-SP

2010-01-13 Thread Meda

Hello,

I m searching a NAS where i can install Bacula. I found the QNAP's NAS but i
don't know if it's possible to install bacula on it.
Do you have any experience with the QNAP's NAS  and Bacula ?

Regards,

Damien Fontaine
-- 
View this message in context: 
http://old.nabble.com/Bacula-on-a-QNAP-TS-439U-SP-tp27145471p27145471.html
Sent from the Bacula - Users mailing list archive at Nabble.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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] static bacula-fd for FreeBSD disaster recovery

2010-01-13 Thread G VM

Martin Simmons wrote:
>> On Wed, 13 Jan 2010 15:01:28 +0100, G VM said:
>> 
>> I have put this in /etc/make.conf:.
>> if $(.CURDIR:M*/sysutils/bacula-client) || \
>>   $(.CURDIR:M*/sysutils/bacula-client)
>> CONFIGURE_ARGS+=--disable-libtool
>> .endif
>>
>> When doing:
>> make config
>> I selected SFDAEMON.
>> After compilation I got a static-bacula-fd of about 2MB.
>> when I do:
>> ldd static-bacula-fd
>> ldd: static-bacula-fd: not a dynamic ELF executable
>> I expected to see a few libraries.
>> Are there absolutely no libraries needed now?
>> Or is something wrong here?
>> 
>
> That is the definition of static -- libc etc are built into it, so there are
> no libraries needed.  It is like /sbin/init and the files in /rescue.
>
> This command should show that it is statically linked:
>
> file static-bacula-fd
>
> __Martin
>
> --
> 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 
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>
>   
file static-bacula-fd
static-bacula-fd: ELF 32-bit LSB executable, Intel 80386, version 1
(FreeBSD), for FreeBSD 7.2, statically linked, FreeBSD-style, stripped

In the wiki (for 2.x.x) there was a list with a few libraries in the ldd
output and this confused me. Seems ok.

Thanks alot!

  --
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 ___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] static bacula-fd for FreeBSD disaster recovery

2010-01-13 Thread Martin Simmons
> On Wed, 13 Jan 2010 15:01:28 +0100, G VM said:
> 
> I have put this in /etc/make.conf:.
> if $(.CURDIR:M*/sysutils/bacula-client) || \
>   $(.CURDIR:M*/sysutils/bacula-client)
> CONFIGURE_ARGS+=--disable-libtool
> .endif
> 
> When doing:
> make config
> I selected SFDAEMON.
> After compilation I got a static-bacula-fd of about 2MB.
> when I do:
> ldd static-bacula-fd
> ldd: static-bacula-fd: not a dynamic ELF executable
> I expected to see a few libraries.
> Are there absolutely no libraries needed now?
> Or is something wrong here?

That is the definition of static -- libc etc are built into it, so there are
no libraries needed.  It is like /sbin/init and the files in /rescue.

This command should show that it is statically linked:

file static-bacula-fd

__Martin

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?

2010-01-13 Thread Jon Schewe
Any reason this is limited to LTO? I would think I could use it for my
DLT tapes too.

On 01/12/2010 11:56 PM, Ken Barclay wrote:
> Regarding Barcode Labels, this is too good not to share.
>
> Free Generator of Barcode Tape Labels for Ultrium LTO Backup Libraries.
> (Nothing to install)
>
> http://tapelabels.librelogiciel.com/
>
> Regards,
> Ken Barclay
>
>
>   
>> -Original Message-
>> From: Ralf Brinkmann [mailto:ralf.brinkm...@wemhoener.de]
>> Sent: Friday, 11 September 2009 4:26 PM
>> To: Bekker
>> Cc: bacula-users@lists.sourceforge.net
>> Subject: Re: [Bacula-users] Dell PV LT2000 supported in Bacula ?
>>
>> Bekker schrieb:
>>
>> 
>>> Does this autochanger work properly with Bacula at the moment ?
>>>   
>> yes, we are working with Bacula release 2.4.2.
>>
>> In the meantime I print the barcode labels (code39) with a special free
>> available Windows based true type font.
>>
>> Info
>> "http://www.logitogo.com/html/barcode39_erstellen.html";
>>
>> Download
>> German version  http://www.logitogo.com/code39.zip
>> English version http://www.logitogo.com/code39_e.zip
>>
>> --
>> Ralf Brinkmann
>>
>>
>>
>> ---
>> ---
>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>> 30-Day
>> trial. Simplify your report design, integration and deployment - and
>> focus on
>> what you do best, core application coding. Discover what's new with
>> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
>> ___
>> Bacula-users mailing list
>> Bacula-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/bacula-users
>> 
> --
> 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 
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>   

-- 
Jon Schewe | http://mtu.net/~jpschewe
If you see an attachment named signature.asc, this is my digital
signature. See http://www.gnupg.org for more information.

For I am convinced that neither death nor life, neither angels nor
demons, neither the present nor the future, nor any powers,
neither height nor depth, nor anything else in all creation, will
be able to separate us from the love of God that is in Christ
Jesus our Lord. - Romans 8:38-39


--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] static bacula-fd for FreeBSD disaster recovery

2010-01-13 Thread G VM

Martin Simmons wrote:
>> On Sat, 9 Jan 2010 19:46:20 +0100, G VM said:
>> 
>> Hi all,
>>
>> I am trying to build a static binary of bacula-fd.
>>
>> I found this thread:
>> http://www.mail-archive.com/bacula-users@lists.sourceforge.net/msg33494.html
>> http://sourceforge.net/mailarchive/message.php?msg_name=3838017D92B3C445BA200CE3B6A821A40A7482%40cetus.dawnsign.com
>>
>> I followed the instructions found there.
>> I tried the way with putting the configure arguments in /etc/make.conf
>> and with putting --enable-static-fd to the .configure line.
>> Also with make static-bacula-fd
>> I am using a fresh install of FreeBSD 7.2-RELEASE
>>
>> I see that configure is using this option.
>>
>> If I look in src/filed, I find a static-bacula-fd.
>> However when I look at the linked libraries I see the same list as
>> bacula-fd.
>> Not 2 or 3 linked libraries.
>> The version in ports is 3.x.x.
>>
>> Does anyone has the same experience?
>> 
>
> You need to configure with --disable-libtool to build static with 3.x.x.
>
> __Martin
>
> --
> 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 
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>
>   
I have put this in /etc/make.conf:.
if $(.CURDIR:M*/sysutils/bacula-client) || \
  $(.CURDIR:M*/sysutils/bacula-client)
CONFIGURE_ARGS+=--disable-libtool
.endif

When doing:
make config
I selected SFDAEMON.
After compilation I got a static-bacula-fd of about 2MB.
when I do:
ldd static-bacula-fd
ldd: static-bacula-fd: not a dynamic ELF executable
I expected to see a few libraries.
Are there absolutely no libraries needed now?
Or is something wrong here?

Thanks for pointing that out Martin. It is not in the wiki. I will
update it.

  --
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 ___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] SQL query

2010-01-13 Thread David Dumortier
Hi all,

I try to query MySQL to obtain all the date of backup for a file.
I used this but have only the last backup :

:List all backup for a File with date :
*Enter Client :
*Enter Filename (no path) :
SELECT Client.Name as Client,
  Path.Path,Filename.Name, Job.JobId as JobId,
  StartTime
 FROM Client,Job,File,Filename,Path
 WHERE Client.ClientId=Job.ClientId
   AND Job.JobId=File.JobId
   AND Path.PathId=File.PathId AND Filename.FilenameId=File.FilenameId
   AND Client.Name='%1'
   AND Filename.Name='%2'
 ORDER BY Path.Path;


Any help appreciated

Best regards
-- 
David Dumortier



--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problem with schedule/pool

2010-01-13 Thread Dan Langille
Ariel Wainer wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Dan Langille wrote:
> |
> | For starters, I would set all your retention values to be the same 
> value (30 days).  Issue a reload command within bconsole.  Then run 
> update (pool, and volumes from pool) to update the Pool and Volumes from 
> that new Pool resource value.
> |
> | Then run with that for a while and see how things go.
> |
> | My theory as to the problem: your Full Job is being dropped from the 
> Catalog.  Bacula goes to run an incremental, can't find a Full, so it 
> promotes that Job to a Full.
> |
> Thanks for your answer. I will try this, but setting the retention to 30 
> days  and max volumes to 3 will not cause the sd to be unable to find 
> usable volumes?

Always CC the mailing list.

Your configuration details are no longer attached to this message so I 
cannot review them.

I don't have time to help just now. Perhaps someone else on the list can.

--
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 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users