Re: [Bacula-users] Is there any scsi list ? (MSL6000 problem)

2009-11-04 Thread Dan Langille
Javi Barroso wrote:
> Hi,
> 
> I'm having trouble with a MSL6000 tape cabine.
> 
> I would like to ask to help, but I don't known which is the appropiate
> list.
> 
> So, I'm asking you about the problem, and I'll be appreciate any
> pointer.
> 
> My problem:
> 
> I have a -old (debian sarge)- bacula system with a MSL6000 attached
> with fiber channel. This system was working until 2 weeks ago.
> 
> The logs are (a lot of times):
> Bacula:
> 28-Oct 01:47 backup-sd: BackupCatalog.2009-10-27_20.00.22 Fatal error:
> 3992 Bad autochanger "load slot 5, drive 0": ERR=Child died from
> signal 15: Termination.
> 28-Oct 01:47 backup-fd: BackupCatalog.2009-10-27_20.00.22 Fatal error:
> job.c:1617 Bad response to Append Data command. Wanted 3000 OK data
> , got 3903 Error append data

I think that is permissions, but not sure.

Have a read of this, it might help.  It's what I have been doing 
recently to get my tape changer going.  Look at the debug stuff for the 
SD when I was getting errors:

http://www.freebsddiary.org/tape-library.php

not yet finished...

--
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


Re: [Bacula-users] How to tell Bacula to use new tape for Archiving

2009-11-04 Thread John Drescher
On Wed, Nov 4, 2009 at 6:11 PM, May, John  wrote:
> I frequently have to archive data off the server that should never expire.  I 
> would like to archive this data onto a new tape, so the archived data is the 
> only thing on the tape.  How do I tell Bacula to do this?  I think it has 
> something to do with the Pools, so below is my bacula-dir.conf.  I've setup 
> an Archive Pool along with some others, but haven't used them yet.
>
> Pool {
>   Name = "Archive"
>   Pool Type = Backup
>   Recycle = no
>   Auto Prune = no
>   Volume Retention = 30 years
>   Accept Any Volume = yes
>   Cleaning Prefix = CLN
> }
>

Looks fine to me. I have been doing similar for 5+ years with bacula
at work without any issue. I have > 20TB in archive.

John

--
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


[Bacula-users] How to tell Bacula to use new tape for Archiving

2009-11-04 Thread May, John
I frequently have to archive data off the server that should never expire.  I 
would like to archive this data onto a new tape, so the archived data is the 
only thing on the tape.  How do I tell Bacula to do this?  I think it has 
something to do with the Pools, so below is my bacula-dir.conf.  I've setup an 
Archive Pool along with some others, but haven't used them yet.

#
##  Director Configuration ##
#
Director {
  Name = bkupsvr-dir
  DIRport = 9101
  QueryFile = "/etc/bacula/scripts/query.sql"
  WorkingDirectory = "/var/lib/bacula"
  PidDirectory = "/var/run/bacula"
  Maximum Concurrent Jobs = 1
  Password = "PASSWORD" # Console password
  Messages = Daemon
  DirAddress = 127.0.0.1
}


#
# Job Defs ##
#
JobDefs {
  Name = "DefaultJob"
  Type = Backup
  Level = Incremental
  Client = bkupsvr-fd
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = Default
  Priority = 10
}

JobDefs {
  Name = "General"
  Type = Backup
  Level = Full
  Schedule = "Servers"
  Storage = Arcvault
  Messages = Standard
  Pool = Default
  Write Bootstrap = "/var/lib/bacula/%i-%c_%n.bsr"
}

#
## Jobs   ###
#
# Backup the catalog database (after the nightly save)
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultJob"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup bacula bacula"
  RunAfterJob = "/etc/bacula/scripts/delete_catalog_backup"
  Write Bootstrap = "/var/lib/bacula/BackupCatalog.bsr"
  Priority = 11
}

# Restore Files
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client = bkupsvr-fd
  FileSet = "Full Set"
  Storage = File
  Pool = Default
  Messages = Standard
  Where = /tmp/Restores
}

Job {
  Name = "Server001"
  JobDefs = "General"
  FileSet = "Data"
  Schedule = "General"
  Client = "server001-fd"
}

#
## Filesets #
#
# List of files to be backed up
FileSet {
  Name = "Full Set"
  Include {
Options {
  signature = MD5
}
File = /
  }
  Exclude {
File = /proc
File = /tmp
File = /.journal
File = /.fsck
  }
}

# This is the backup of the catalog
FileSet {
  Name = "Catalog"
  Include {
Options {
  signature = MD5
}
File = /var/lib/bacula/bacula.sql
  }
}

FileSet {
  Name = "Data"
  Include {
Options {
  signature = MD5
  IgnoreCase = yes
  }
  File = "C:/Data/"
}
}

#
## Schedules  ###
#
# When to do the backups, full backup on first sunday of the month,
#  differential (i.e. incremental since full) every other sunday, and 
#  incremental backups other days
Schedule {
  Name = "WeeklyCycle"
  Run = Level=Full 1st sun at 23:05
  Run = Level=Differential 2nd-5th sun at 23:05
  Run = Level=Incremental mon-sat at 23:05
}

# This schedule does the catalog. It starts after the WeeklyCycle
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Level=Full sun-sat at 23:10
}

Schedule {
Name = "General"
Run = IncrementalPool="Incremental" Level=Incremental mon-thu at 19:00
Run = FullPool="Weekly" Level=Full 2nd-5th fri at 19:00
Run = FullPool="Monthly" Level=Full 1st fri at 19:00
}

Schedule {
Name = "Exchange"
Run = FullPool="Exchange" Level=Full mon-fri at 18:00
Run = FullPool="Monthly" Level=Full 1st fri at 18:00
}

Schedule {
Name = "Servers"
Run = FullPool="Weekly" Level=Full fri at 18:10
Run = FullPool="Monthly" Level=Full 1st fri at 18:10
}

Schedule {
Name = "SQL"
Run = FullPool="Weekly" Level=Full fri at 18:45
Run = FullPool="Monthly" Level=Full 1st fri at 18:45
}

#
## Clients  #
#
Client {
  Name = bkupsvr-fd
  Address = bkupsvr
  FDPort = 9102
  Catalog = MyCatalog
  Password = "PASSWORD"
  File Retention = 30 days  # 30 days
  Job Retention = 1y# 1 years
  AutoPr

Re: [Bacula-users] Bacula 3.0 RPMs for SuSE?

2009-11-04 Thread Timo Neuvonen
"Kevin Keane"  kirjoitti viestissä 
news:724c3b2f1c5eb44d9108e471ec5e99331ebf914...@akechi-denki.ad.nctechcenter.com...
  I am currently using version 2.4.2 on OpenSUSE 11.1 (x86_64), and would like 
to upgrade to 3.0, but I don't want to recompile from source. OpenSUSE 11.1 
still only includes bacula 2.4. Are there any 3.0 RPMs? The OpenSUSE build 
service usually has newer RPMs, but even there I only found the bacula 3.0 
client but no binary RPMs for the server.

   

There are 3.0.2 rpms for Suse 11.1 in SourceForge under rpms-contrib-psheaffer. 
Look under "all files" in Bacula download area.



--

TiN
--
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


Re: [Bacula-users] "system cannot find the path specified"

2009-11-04 Thread RYAN vAN GINNEKEN
Thanks again Bruno i feel kind of silly, I took another look at things in the 
light of day, and it was a typo and a name misspelling gerry not jerry who 
knew, err i guess you did hehe.

Computer King   CaN-MailSurveillance King 
http://computerking.ca http://canmail.org  http://surveillanceking.net 

Surveillance - Sales Service - Hosting Backup
NEW!!! Internet Based Surveillance Systems
Custom Service Pac kages
Secure IMAP Email - Automated Remote Backups - Photo Blogs - Online Accounting 
Packages

- "Bruno Friedmann"  wrote:

> RYAN vAN GINNEKEN wrote:
> > Hello all using bacula director/storage dameon Version: 3.0.2 (18
> July 2009) complied from source on ubuntu 8.04.  
> > Trying to backup a windows client running Version: 3.0.3 (18 October
> 2009) VSS Linux Cross-compile Win32.
> > 
> > I keep getting the "system cannot find the path specified"
> errors(see below) seems only directories with spaces in their filename
> are doing this. As the c:/dell which I did as a test has no spaces and
> backs up just fine.  I have checked and double checked, these
> directories do exist, and need to be backed up.
> > 
> > Here is my fileset resource could someone please help me get this
> sorted? I have looked high and low for a solution to this, in the docs
> and on google, but all of what i can find seems to state this should
> work. Thanks in advance.
> > 
> > FileSet {
> >   Name = "northland2-fileset"
> >  Ignore FileSet Changes = Yes
> >  Include {
> > Options {
> >  signature = MD5
> >  Compression = GZIP
> >  Exclude = YES
> >  IgnoreCase = YES
> >  WildDir = "[A-Z]:*/1_NOBACKUP"
> > # WildDir = "[A-Z]:/Desktop/www/*"
> > # WildDir = "[A-Z]:/Documents/My Web Sites/*"
> > }
> > File = "C:/CyberMatix Point of Sale"
> > File = "C:/Documents and Settings/jerry hall/Desktop"
> > File = "C:/Documents and Settings/jerry hall/My Documents"
> > File = "C:/dell"
> > }
> >   Exclude {
> > File = "C:/Desktop/www"
> > File = "C:/Documents/My Web Sites"
> > }
> > }
> > 
> > 03-Nov 19:49 northland2 JobId 1140:  Could not stat
> "C:/CyberMatix Point of Sale": ERR=The system cannot find the file
> specified.
> > 
> > 03-Nov 19:49 northland2 JobId 1140:  Could not stat
> "C:/Documents and Settings/jerry hall/Desktop": ERR=The system cannot
> find the path specified.
> > 
> > 03-Nov 19:49 northland2 JobId 1140:  Could not stat
> "C:/Documents and Settings/jerry hall/My Documents": ERR=The system
> cannot find the path specified.
> > 
> > 
> > Give me a fast ship, for I intend to go in harms way.
> > 
> 
> Hi Ryan,
> Could be possible that "CyberMatix Point of Sale" is just a
> mis-spelled ( found "CyberMatrix Point of Sale" in google ) ?
> If it's the case, bacula-fd is doing well it's job :-)
> 
> You didn't specify which kind of windows you are saving, if it's Vista
> or more Desktop, My Documents etc have change.
> In fact if the system is not a pure english one, They could also have
> other name ( desktop = Bureau, My Documents = Mes
> Documents in french ) 
> 
> 
> 
> -- 
> 
>  Bruno Friedmann
> 
> 
> --
> 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

--
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


[Bacula-users] Job is waiting for execuition

2009-11-04 Thread umeyer

Hi,

i have a Problem with Bacula 3.03 on SLES10.

Installation and Test working fine. A TestBackup on my TapeDrive is working 
fine too. But when i start a next Job (the first job is finished) this one is 
waiting for execution. When i stop Bacula and restart it, the first job is 
running fine, but the second is waiting for execution. What ca i do?

On another SLES10 Server Bacula is running fine.

Regards
Uwe

+--
|This was sent by uwe.me...@cewecolor.de via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
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


Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Eitan Talmi
Hi Gavin

you should add the line Wildfile=*.* above the signature. look at the
example


Fileset {
  Name = Windows
  Include{
  Options{
 Wildfile=*.*
 signature = MD5
 IgnoreCase = yes
}
File = "c:/windows"
  }
}

Eitan


On Wed, Nov 4, 2009 at 6:52 PM, Gavin McCullagh wrote:

> Hi,
>
> On Wed, 04 Nov 2009, Dennis Schneck wrote:
>
> > i wann backup a windows 2003 server.
>
> > FileSet {
> >   Name = "Full Set WIN"
> >   Enable VSS = yes
> >   Include {
> > Options {
> >   Ignore Case = yes
> >   signature = MD5
> > }
> >file = "C:\\WINDOWS\\"
> > }
> >
> >   Exclude {
> > file = "c:\\temp"
> > file = "c:\\pagefile.sys"
> > file = "*Temporary Internet Files*"
> >   }
> > }
>
> > 04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume
> "BckUp0006" size=1481814731
> > 04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\:
> ERR=No such file or directory
>
> > What did i wrong ?
> > The bacula-fd service on the Windows 2003 (domain controller) runs als
> user administrator
>
> I think you need to use c:/windows, ie use forward slashes in place of
> backslashes.  You probably don't need "" in most cases either.
>
> Gavin
>
>
>
> --
> 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
>
--
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


[Bacula-users] Documentation

2009-11-04 Thread Kern Sibbald
Hello,

I have made a first cut at reorganizing the Development version of the manual 
back into fewer pieces.  Previously we had:

# Concepts and Overview Guide 
# Installation and Configuration Guide 
# Console and Operators Guide 
# Problem Resolution Guide 
# Catalog Database Guide
# Utility Programs 
# Developers' Guide

After the rearrangement, we have:

# Bacula Main Reference Guide  PDF  /HTML
# Console and Operators Guide PDF /HTML
# Problem Resolution Guide PDF /HTML
# Utility Programs PDF /HTML
# Developers' Guide PDF /HTML
# Miscellaneous Guide PDF /HTML

This is a sort of first cut.  The Console manual is currently missing some of 
the GUI stuff that I would like to put into it.

Apart from that, there are fewer manuals because I combined the
Concepts, Installation, and Catalog manuals.  The new Miscellaneous Guide is 
basically either old stuff or features that will probably go away.

It would be possible to combine the Console, Problem, and Utility manuals into 
the new Main manual, but at this point, I am a bit undecided.  Also, long 
term, if we keep the Problem manual, it would be good to clean it up and move 
some of the problem stuff out of the Main manual.

You can see them under "Manuals for Version 3.1.x (currently under 
development)  on the web site at:

http://www.bacula.org/en?page=Documentation

Note: until I am sure what we want, I don't plan to re-organize any of the 
translations, but in the end they should be all organized the same way.

What do you think?

Best regards, 

Kern


On Wednesday 21 October 2009 23:58:03 Martin Simmons wrote:
> > On Wed, 21 Oct 2009 21:53:50 +0200, Kern Sibbald said:
> >
> > On Wednesday 21 October 2009 20:46:00 Bob Hetzel wrote:
> > > I added --libdir=/usr/lib64 to my CFLAGS and that seems to have solved
> > > it. Perhaps something about that should be added to the manual about
> > > that.
> >
> > It has been documented since release 3.0.0 in the New Features chapter of
> > the manual.
> >
> > http://www.bacula.org/3.0.x-manuals/en/concepts/concepts/New_Features.htm
> >l#SECTION0035
>
> LOL, that's exactly where I would look for it too :-)
>
> While I'm moaning about the documentation, I'd like to request that you
> please undo the splitting of the old User's Manual into multiple books. 
> I've given up looking in the 3.x manuals for anything because it drives me
> mad:
>
> - The split points make little sense.  Choosing the right manual is
> guesswork.
>
> - Cross-manual links in the 3.0.x HTML are broken.
>
> - Cross-manual links in the 3.1.x HTML are not HTML links at all.  They use
>   words, which are often different from the titles in the supposed
> destination of the link (this was a problem in 2.x, but at least the HTML
> did its job).
>
> - It is unlikely to ever work usefully in the PDF.
>
> The latest example was bootstrap file use in bextract.
>
> __Martin



--
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


[Bacula-users] Invitation to connect on LinkedIn

2009-11-04 Thread Javier Ramirez
LinkedIn


Javier Ramirez requested to add you as a connection on LinkedIn:
--

Kevin,

I'd like to add you to my professional network on LinkedIn.

- Javier

Accept invitation from Javier Ramirez
http://www.linkedin.com/e/zChZKG-_H1sZaPijQ2XCMGR-QixtEeEj-2UnLd_9Q4Ka04FnBsz/blk/I1558922332_2/pmpxnSRJrSdvj4R5fnhv9ClRsDgZp6lQs6lzoQ5AomZIpn8_cBYOcPcOczAUdjkNiiYTdnpkiTdfsOYSd3wUe3oMd3wLrCBxbOYWrSlI/EML_comm_afe/

View invitation from Javier Ramirez
http://www.linkedin.com/e/zChZKG-_H1sZaPijQ2XCMGR-QixtEeEj-2UnLd_9Q4Ka04FnBsz/blk/I1558922332_2/39vczcPcz8Ve3kRckALqnpPbOYWrSlI/svi/
--

DID YOU KNOW you can be the first to know when a trusted member of your network 
changes jobs? With Network Updates on your LinkedIn home page, you'll be 
notified as members of your network change their current position. Be the first 
to know and reach out!
http://www.linkedin.com/

 
--
(c) 2009, LinkedIn Corporation

--
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


Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Gavin McCullagh
Hi,

On Wed, 04 Nov 2009, Dennis Schneck wrote:

> i wann backup a windows 2003 server.

> FileSet {
>   Name = "Full Set WIN"
>   Enable VSS = yes
>   Include {
> Options {
>   Ignore Case = yes
>   signature = MD5
> }
>file = "C:\\WINDOWS\\"
> }
> 
>   Exclude {
> file = "c:\\temp"
> file = "c:\\pagefile.sys"
> file = "*Temporary Internet Files*"
>   }
> }

> 04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume 
> "BckUp0006" size=1481814731
> 04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\: ERR=No 
> such file or directory

> What did i wrong ?
> The bacula-fd service on the Windows 2003 (domain controller) runs als user 
> administrator

I think you need to use c:/windows, ie use forward slashes in place of
backslashes.  You probably don't need "" in most cases either.

Gavin


--
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


Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Avi Rozen
Dennis Schneck wrote:
> 04-Nov 15:32 baculaSRV-dir JobId 72: No prior Full backup Job record found.
> 04-Nov 15:32 baculaSRV-dir JobId 72: No prior or suitable Full backup found 
> in catalog. Doing FULL backup.
> 04-Nov 15:32 baculaSRV-dir JobId 72: Start Backup JobId 72, 
> Job=baculaexch.2009-11-04_15.32.17.03
> 04-Nov 15:32 baculaSRV-dir JobId 72: Using Device "FileStorage"
> 04-Nov 15:32 baculaSRV-sd JobId 72: Volume "BckUp0006" previously written, 
> moving to end of data.
> 04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume 
> "BckUp0006" size=1481814731
> 04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\: ERR=No 
> such file or directory
> 04-Nov 15:32 baculaSRV-sd JobId 72: Job write elapsed time = 00:00:01, 
> Transfer rate = 0  bytes/second
> 04-Nov 15:32 baculaSRV-dir JobId 72: Bacula baculaSRV-dir 2.4.4 (28Dec08): 
> 04-Nov-2009 15:32:19
>   Build OS:   x86_64-pc-linux-gnu debian squeeze/sid
>   JobId:  72
>   Job:baculaexch.2009-11-04_15.32.17.03
>   Backup Level:   Full (upgraded from Incremental)
>   Client: "baculaSRV-fd" 2.4.4 (28Dec08) 
> x86_64-pc-linux-gnu,debian,squeeze/sid
>   FileSet:"Full Set WIN" 2009-11-04 15:32:17
>   
You seem to be contacting the wrong file daemon...

You should see something like this for a windows box:

Client: "winxp-fd" 3.0.2 (18Jul09) Linux,Cross-compile,Win32

Cheers,
Avi.

--
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


Re: [Bacula-users] weekly backup on 2 external hard disks

2009-11-04 Thread John Drescher
On Wed, Nov 4, 2009 at 11:30 AM, Josh Fisher  wrote:
>
> Mgr. Martin Fabus( wrote:
 What do I do with the catalog? Does this remain as it is, i.e. just one
 catalog for all the jobs and all the pools, do I use one of the new ones
 (full1, etc), or do I keep the default pool?


>>
>> It is enough to have 1 job for the catalog, but you will have to use
>> different schedule, which would specify to backup the catalog on even
>> pool on even weeks and odd pool on odd weeks.
>>
>>
>
> Yes. The catalog backups are always full backups, so they just need to
> be in both pools. The tricky part is that the catalog backup be the last
> job on a drive when that drive is unmounted. But that can be
> accomplished with job priorities to force all other jobs to run before
> the catalog backup. Basically, you don't want any backups on the drive
> that are newer than the catalog backup.
>

Also with a catalog backup I highly recommend you keep the bootstrap
file. Without that restoring the last catalog backup on the volume may
be difficult. At least it was for me the 1 time (in over 5 years of
bacula) I needed to restore the catalog backup 2 years ago.

John

--
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


Re: [Bacula-users] Restore job don't know in which storage is the volume

2009-11-04 Thread Victor Hugo dos Santos
On Wed, Nov 4, 2009 at 9:45 AM, Martin Simmons  wrote:
>> On Fri, 30 Oct 2009 16:13:58 -0300, Victor Hugo dos Santos said:
>> ...
>>
>> If I select yes... bacula show this message:
>>
>> ==
>>     30-Oct 15:13 bacula-sd JobId 16787: Please mount Volume
>> "oracle-completo-0901" for:
>>     Job:          Restaurar.2009-10-30_15.13.09
>>     Storage:      "FileStorage" (/var/bacula)
>>     Pool:         Default
>>     Media type:   File
>> ==
>>
>> because the volumen isn't on storage0, but yes on storage1.
>>
>> well.. IMHO, the problem is in this line:
>> --
>> Storage "" not found, using Storage "Storage0" from MediaType "File".
>> Bootstrap records written to /var/lib/bacula/bacula-dir.restore.2.bsr
>> --
>>
>> why bacula, don't know in which local/storage it saved the volume and
>> try to use the "storage0" for default ??
>
> Bacula uses the media type to choose the storage.  You need to configure
> different media types for each storage and then update the existing volumes to
> match.

Hello Martin...

OK.. I read the documentation and Basica Volume Management
(http://www.bacula.org/en/rel-manual/Basic_Volume_Management.html)

and for me is clear how work (or as should work) bacula with multiples
storages...

now.. I changed my configuration to:

 director 
Storage {
Name = Storage0
Address = bacula.mydomain.com
SDPort = 9103
Password = "XX"
Device = FileStorage
Media Type = File
}
Storage {
Name = Storage1
Address = bacula-st1.mydomain.com
SDPort = 9103
Password = "YY"
Device = FileStorage1
Media Type = File1
}


 storage0 
Device {
Name = FileStorage
Media Type = File
Archive Device = /var/respaldo/bacula
LabelMedia = yes;   # lets Bacula label unlabeled media
Random Access = Yes;
AutomaticMount = yes;   # when device opened, read it
RemovableMedia = no;
AlwaysOpen = no;
}


 storage1 (there is the change) 
Device {
Name = FileStorage1
Media Type = File1
Archive Device = /var/respaldo/bacula
LabelMedia = yes;   # lets Bacula label unlabeled media
Random Access = Yes;
AutomaticMount = yes;   # when device opened, read it
RemovableMedia = no;
AlwaysOpen = no;
}


basically, I changed the parameter "Media Type" from "File" to "File1"
on section "storage" in director's configuration file and "device" in
storage's configuration file..

after this changes, I restarted the director and storage and on
console I tried to update the volumes with "update" command, but don't
worked... :-(

In documentation of console
(http://www.bacula.org/en/rel-manual/Bacula_Console.html#SECTION00215),
I don't see options for update the parameter "Media Type"  of current
volumes !!!


When you wrote
"then update the existing volumes to match."
You wanted make reference to command update of console or other method ??

some documentation or help about this ??

very much thanks


-- 
-- 
Victor Hugo dos Santos
Linux Counter #224399

--
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


Re: [Bacula-users] weekly backup on 2 external hard disks

2009-11-04 Thread Josh Fisher

Mgr. Martin Fabus( wrote:
>>> What do I do with the catalog? Does this remain as it is, i.e. just one
>>> catalog for all the jobs and all the pools, do I use one of the new ones
>>> (full1, etc), or do I keep the default pool?
>>> 
>>>   
>
> It is enough to have 1 job for the catalog, but you will have to use
> different schedule, which would specify to backup the catalog on even
> pool on even weeks and odd pool on odd weeks.
>
>   

Yes. The catalog backups are always full backups, so they just need to 
be in both pools. The tricky part is that the catalog backup be the last 
job on a drive when that drive is unmounted. But that can be 
accomplished with job priorities to force all other jobs to run before 
the catalog backup. Basically, you don't want any backups on the drive 
that are newer than the catalog backup.


--
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


Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Dennis Schneck


>You may want to try "C:/WINDOWS" instead.

no its the same problem



Von: Avi Rozen [avi.ro...@gmail.com]
Gesendet: Mittwoch, 4. November 2009 15:56
An: Dennis Schneck
Cc: bacula-users@lists.sourceforge.net
Betreff: Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat 
C:\WINDOWS\: ERR=No such file or directory

Dennis Schneck wrote:
>
> FileSet {
>   Name = "Full Set WIN"
>   Enable VSS = yes
>   Include {
> Options {
>   Ignore Case = yes
>   signature = MD5
> }
>file = "C:\\WINDOWS\\"
> }
>
>

You may want to try "C:/WINDOWS" instead.

Quoting from the manual [1]: "the path separators must be specified in
Unix convention (i.e. forward slash (/))"

Hope this helps,
Avi.

[1]
http://www.bacula.org/en/rel-manual/Configuring_Director.html#SECTION001411


--
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


Re: [Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Avi Rozen
Dennis Schneck wrote:
>
> FileSet {
>   Name = "Full Set WIN"
>   Enable VSS = yes
>   Include {
> Options {
>   Ignore Case = yes
>   signature = MD5
> }
>file = "C:\\WINDOWS\\"
> }
>
>   

You may want to try "C:/WINDOWS" instead.

Quoting from the manual [1]: "the path separators must be specified in
Unix convention (i.e. forward slash (/))"

Hope this helps,
Avi.

[1]
http://www.bacula.org/en/rel-manual/Configuring_Director.html#SECTION001411

--
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


[Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Dennis Schneck
Hello,
i wann backup a windows 2003 server.

my FileSet CFG:

JobDefs {
  Name = "DefaultJobWIN"
  Type = Backup
  Level = Incremental
  Client = baculaSRV-fd
  FileSet = "Full Set WIN"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = Default
  Priority = 10
}

Job {
  Name = "baculaexch"
  JobDefs = "DefaultJobWIN"
  Write Bootstrap = "/var/lib/bacula/baculaexch.bsr"
}


FileSet {
  Name = "Full Set WIN"
  Enable VSS = yes
  Include {
Options {
  Ignore Case = yes
  signature = MD5
}
   file = "C:\\WINDOWS\\"
}

  Exclude {
file = "c:\\temp"
file = "c:\\pagefile.sys"
file = "*Temporary Internet Files*"
  }
}




Date: Wed, 04 Nov 2009 15:32:19 +0100 (CET)

04-Nov 15:32 baculaSRV-dir JobId 72: No prior Full backup Job record found.
04-Nov 15:32 baculaSRV-dir JobId 72: No prior or suitable Full backup found in 
catalog. Doing FULL backup.
04-Nov 15:32 baculaSRV-dir JobId 72: Start Backup JobId 72, 
Job=baculaexch.2009-11-04_15.32.17.03
04-Nov 15:32 baculaSRV-dir JobId 72: Using Device "FileStorage"
04-Nov 15:32 baculaSRV-sd JobId 72: Volume "BckUp0006" previously written, 
moving to end of data.
04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume 
"BckUp0006" size=1481814731
04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\: ERR=No 
such file or directory
04-Nov 15:32 baculaSRV-sd JobId 72: Job write elapsed time = 00:00:01, Transfer 
rate = 0  bytes/second
04-Nov 15:32 baculaSRV-dir JobId 72: Bacula baculaSRV-dir 2.4.4 (28Dec08): 
04-Nov-2009 15:32:19
  Build OS:   x86_64-pc-linux-gnu debian squeeze/sid
  JobId:  72
  Job:baculaexch.2009-11-04_15.32.17.03
  Backup Level:   Full (upgraded from Incremental)
  Client: "baculaSRV-fd" 2.4.4 (28Dec08) 
x86_64-pc-linux-gnu,debian,squeeze/sid
  FileSet:"Full Set WIN" 2009-11-04 15:32:17
  Pool:   "Default" (From Job resource)
  Storage:"File" (From Job resource)
  Scheduled time: 04-Nov-2009 15:32:15
  Start time: 04-Nov-2009 15:32:19
  End time:   04-Nov-2009 15:32:19
  Elapsed time:   0 secs
  Priority:   10
  FD Files Written:   0
  SD Files Written:   0
  FD Bytes Written:   0 (0 B)
  SD Bytes Written:   0 (0 B)
  Rate:   0.0 KB/s
  Software Compression:   None
  VSS:no
  Storage Encryption: no
  Volume name(s):
  Volume Session Id:  16
  Volume Session Time:1257332370
  Last Volume Bytes:  1,481,815,139 (1.481 GB)
  Non-fatal FD errors:1
  SD Errors:  0
  FD termination status:  OK
  SD termination status:  OK
  Termination:Backup OK -- with warnings

04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Jobs.
04-Nov 15:32 baculaSRV-dir JobId 72: No Jobs found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Files.
04-Nov 15:32 baculaSRV-dir JobId 72: No Files found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: End auto prune.



What did i wrong ?
The bacula-fd service on the Windows 2003 (domain controller) runs als user 
administrator
Thanks for help
dennis


--
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


[Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Dennis Schneck
Hello,
i wann backup a windows 2003 server.

my FileSet CFG:

JobDefs {
  Name = "DefaultJobWIN"
  Type = Backup
  Level = Incremental
  Client = baculaSRV-fd
  FileSet = "Full Set WIN"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = Default
  Priority = 10
}

Job {
  Name = "baculaexch"
  JobDefs = "DefaultJobWIN"
  Write Bootstrap = "/var/lib/bacula/baculaexch.bsr"
}


FileSet {
  Name = "Full Set WIN"
  Enable VSS = yes
  Include {
Options {
  Ignore Case = yes
  signature = MD5
}
   file = "C:\\WINDOWS\\"
}

  Exclude {
file = "c:\\temp"
file = "c:\\pagefile.sys"
file = "*Temporary Internet Files*"
  }
}




Date: Wed, 04 Nov 2009 15:32:19 +0100 (CET)

04-Nov 15:32 baculaSRV-dir JobId 72: No prior Full backup Job record found.
04-Nov 15:32 baculaSRV-dir JobId 72: No prior or suitable Full backup found in 
catalog. Doing FULL backup.
04-Nov 15:32 baculaSRV-dir JobId 72: Start Backup JobId 72, 
Job=baculaexch.2009-11-04_15.32.17.03
04-Nov 15:32 baculaSRV-dir JobId 72: Using Device "FileStorage"
04-Nov 15:32 baculaSRV-sd JobId 72: Volume "BckUp0006" previously written, 
moving to end of data.
04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume 
"BckUp0006" size=1481814731
04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\: ERR=No 
such file or directory
04-Nov 15:32 baculaSRV-sd JobId 72: Job write elapsed time = 00:00:01, Transfer 
rate = 0  bytes/second
04-Nov 15:32 baculaSRV-dir JobId 72: Bacula baculaSRV-dir 2.4.4 (28Dec08): 
04-Nov-2009 15:32:19
  Build OS:   x86_64-pc-linux-gnu debian squeeze/sid
  JobId:  72
  Job:baculaexch.2009-11-04_15.32.17.03
  Backup Level:   Full (upgraded from Incremental)
  Client: "baculaSRV-fd" 2.4.4 (28Dec08) 
x86_64-pc-linux-gnu,debian,squeeze/sid
  FileSet:"Full Set WIN" 2009-11-04 15:32:17
  Pool:   "Default" (From Job resource)
  Storage:"File" (From Job resource)
  Scheduled time: 04-Nov-2009 15:32:15
  Start time: 04-Nov-2009 15:32:19
  End time:   04-Nov-2009 15:32:19
  Elapsed time:   0 secs
  Priority:   10
  FD Files Written:   0
  SD Files Written:   0
  FD Bytes Written:   0 (0 B)
  SD Bytes Written:   0 (0 B)
  Rate:   0.0 KB/s
  Software Compression:   None
  VSS:no
  Storage Encryption: no
  Volume name(s):
  Volume Session Id:  16
  Volume Session Time:1257332370
  Last Volume Bytes:  1,481,815,139 (1.481 GB)
  Non-fatal FD errors:1
  SD Errors:  0
  FD termination status:  OK
  SD termination status:  OK
  Termination:Backup OK -- with warnings

04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Jobs.
04-Nov 15:32 baculaSRV-dir JobId 72: No Jobs found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Files.
04-Nov 15:32 baculaSRV-dir JobId 72: No Files found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: End auto prune.



What did i wrong ?
The bacula-fd service on the Windows 2003 (domain controller) runs als user 
administrator
Thanks for help
dennis


--
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


[Bacula-users] Backup: Windows 2003 Server: Could not stat C:\WINDOWS\: ERR=No such file or directory

2009-11-04 Thread Dennis Schneck
Hello,
i wann backup a windows 2003 server.

my FileSet CFG:

JobDefs {
  Name = "DefaultJobWIN"
  Type = Backup
  Level = Incremental
  Client = baculaSRV-fd
  FileSet = "Full Set WIN"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = Default
  Priority = 10
}

Job {
  Name = "baculaexch"
  JobDefs = "DefaultJobWIN"
  Write Bootstrap = "/var/lib/bacula/baculaexch.bsr"
}


FileSet {
  Name = "Full Set WIN"
  Enable VSS = yes
  Include {
Options {
  Ignore Case = yes
  signature = MD5
}
   file = "C:\\WINDOWS\\"
}

  Exclude {
file = "c:\\temp"
file = "c:\\pagefile.sys"
file = "*Temporary Internet Files*"
  }
}




Date: Wed, 04 Nov 2009 15:32:19 +0100 (CET)

04-Nov 15:32 baculaSRV-dir JobId 72: No prior Full backup Job record found.
04-Nov 15:32 baculaSRV-dir JobId 72: No prior or suitable Full backup found in 
catalog. Doing FULL backup.
04-Nov 15:32 baculaSRV-dir JobId 72: Start Backup JobId 72, 
Job=baculaexch.2009-11-04_15.32.17.03
04-Nov 15:32 baculaSRV-dir JobId 72: Using Device "FileStorage"
04-Nov 15:32 baculaSRV-sd JobId 72: Volume "BckUp0006" previously written, 
moving to end of data.
04-Nov 15:32 baculaSRV-sd JobId 72: Ready to append to end of Volume 
"BckUp0006" size=1481814731
04-Nov 15:32 baculaSRV-fd JobId 72:  Could not stat C:\WINDOWS\: ERR=No 
such file or directory
04-Nov 15:32 baculaSRV-sd JobId 72: Job write elapsed time = 00:00:01, Transfer 
rate = 0  bytes/second
04-Nov 15:32 baculaSRV-dir JobId 72: Bacula baculaSRV-dir 2.4.4 (28Dec08): 
04-Nov-2009 15:32:19
  Build OS:   x86_64-pc-linux-gnu debian squeeze/sid
  JobId:  72
  Job:baculaexch.2009-11-04_15.32.17.03
  Backup Level:   Full (upgraded from Incremental)
  Client: "baculaSRV-fd" 2.4.4 (28Dec08) 
x86_64-pc-linux-gnu,debian,squeeze/sid
  FileSet:"Full Set WIN" 2009-11-04 15:32:17
  Pool:   "Default" (From Job resource)
  Storage:"File" (From Job resource)
  Scheduled time: 04-Nov-2009 15:32:15
  Start time: 04-Nov-2009 15:32:19
  End time:   04-Nov-2009 15:32:19
  Elapsed time:   0 secs
  Priority:   10
  FD Files Written:   0
  SD Files Written:   0
  FD Bytes Written:   0 (0 B)
  SD Bytes Written:   0 (0 B)
  Rate:   0.0 KB/s
  Software Compression:   None
  VSS:no
  Storage Encryption: no
  Volume name(s):
  Volume Session Id:  16
  Volume Session Time:1257332370
  Last Volume Bytes:  1,481,815,139 (1.481 GB)
  Non-fatal FD errors:1
  SD Errors:  0
  FD termination status:  OK
  SD termination status:  OK
  Termination:Backup OK -- with warnings

04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Jobs.
04-Nov 15:32 baculaSRV-dir JobId 72: No Jobs found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: Begin pruning Files.
04-Nov 15:32 baculaSRV-dir JobId 72: No Files found to prune.
04-Nov 15:32 baculaSRV-dir JobId 72: End auto prune.



What did i wrong ?
The bacula-fd service on the Windows 2003 (domain controller) runs als user 
administrator
Thanks for help
dennis


--
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


Re: [Bacula-users] Tape Change

2009-11-04 Thread João Kuchnier
I will try this settings. Thanks for your help.

Best regards,

João K.

2009/11/4 Evan Fraser :
> I think the "Max Start Delay = " option is what you want.
>
> Some docs on it in the Job Resource section: 
> http://www.bacula.org/3.0.x-manuals/en/install/install/Configuring_Director.html#SECTION0063
>
> Cheers, Evan.
> -Original Message-
> From: João Kuchnier [mailto:joao.kuchn...@gmail.com]
> Sent: 03 November 2009 20:56
> To: bacula-users
> Subject: [Bacula-users] Tape Change
>
> Hi everyone!
>
> Previously I asked for help to configure one tape for each day of the
> week. I succeeded on that configuration.
>
> However, I had some problems yesterday. Monday was a holiday here and
> because of that I inserted the Tuesday tape on Friday. When the Monday
> jobs started, they required the Monday tape. Consequently, the Tuesday
> jobs didn't work because the Monday jobs were frozen. Is there anyway
> to cancel that day jobs if the pool is not accessible? Like a timer or
> something.
>
> Best regards,
>
> João K.
>
> --
> Come build with us! The BlackBerry(R) Developer Conference in SF, CA
> is the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay
> ahead of the curve. Join us from November 9 - 12, 2009. Register now!
> http://p.sf.net/sfu/devconference
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>
> This message and any attachments contain information that may be RMS Inc. 
> confidential and/or privileged.  If you are not the intended recipient (or 
> authorized to receive for the intended recipient), and have received this 
> message in error, any use, disclosure or distribution is strictly prohibited. 
>   If you have received this message in error, please notify the sender 
> immediately by replying to the e-mail and permanently deleting the message 
> from your computer and/or storage system.
>
>

--
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


Re: [Bacula-users] Tape Change

2009-11-04 Thread Evan Fraser
I think the "Max Start Delay = " option is what you want.

Some docs on it in the Job Resource section: 
http://www.bacula.org/3.0.x-manuals/en/install/install/Configuring_Director.html#SECTION0063

Cheers, Evan.
-Original Message-
From: João Kuchnier [mailto:joao.kuchn...@gmail.com]
Sent: 03 November 2009 20:56
To: bacula-users
Subject: [Bacula-users] Tape Change

Hi everyone!

Previously I asked for help to configure one tape for each day of the
week. I succeeded on that configuration.

However, I had some problems yesterday. Monday was a holiday here and
because of that I inserted the Tuesday tape on Friday. When the Monday
jobs started, they required the Monday tape. Consequently, the Tuesday
jobs didn't work because the Monday jobs were frozen. Is there anyway
to cancel that day jobs if the pool is not accessible? Like a timer or
something.

Best regards,

João K.

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


This message and any attachments contain information that may be RMS Inc. 
confidential and/or privileged.  If you are not the intended recipient (or 
authorized to receive for the intended recipient), and have received this 
message in error, any use, disclosure or distribution is strictly prohibited.   
If you have received this message in error, please notify the sender 
immediately by replying to the e-mail and permanently deleting the message from 
your computer and/or storage system.


--
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


Re: [Bacula-users] Restore job don't know in which storage is the volume

2009-11-04 Thread Martin Simmons
> On Fri, 30 Oct 2009 16:13:58 -0300, Victor Hugo dos Santos said:
> ...
> 
> If I select yes... bacula show this message:
> 
> ==
> 30-Oct 15:13 bacula-sd JobId 16787: Please mount Volume
> "oracle-completo-0901" for:
> Job:  Restaurar.2009-10-30_15.13.09
> Storage:  "FileStorage" (/var/bacula)
> Pool: Default
> Media type:   File
> ==
> 
> because the volumen isn't on storage0, but yes on storage1.
> 
> well.. IMHO, the problem is in this line:
> --
> Storage "" not found, using Storage "Storage0" from MediaType "File".
> Bootstrap records written to /var/lib/bacula/bacula-dir.restore.2.bsr
> --
> 
> why bacula, don't know in which local/storage it saved the volume and
> try to use the "storage0" for default ??

Bacula uses the media type to choose the storage.  You need to configure
different media types for each storage and then update the existing volumes to
match.

__Martin

--
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


[Bacula-users] Bacula 3.0 RPMs for SuSE?

2009-11-04 Thread Kevin Keane
I am currently using version 2.4.2 on OpenSUSE 11.1 (x86_64), and would like to 
upgrade to 3.0, but I don't want to recompile from source. OpenSUSE 11.1 still 
only includes bacula 2.4. Are there any 3.0 RPMs? The OpenSUSE build service 
usually has newer RPMs, but even there I only found the bacula 3.0 client but 
no binary RPMs for the server.

Thanks!

--
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


Re: [Bacula-users] weekly backup on 2 external hard disks

2009-11-04 Thread Mgr. Martin Fabus(

>> What do I do with the catalog? Does this remain as it is, i.e. just one
>> catalog for all the jobs and all the pools, do I use one of the new ones
>> (full1, etc), or do I keep the default pool?
>> 


It is enough to have 1 job for the catalog, but you will have to use
different schedule, which would specify to backup the catalog on even
pool on even weeks and odd pool on odd weeks.

--
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


Re: [Bacula-users] weekly backup on 2 external hard disks

2009-11-04 Thread Mgr. Martin Fabuš

> I think you are right. Volumes on HDD 1 will be in one pool and
> volumes on HDD 2 in another. For each client, there will be a full
> backup in both pools created by manually running level=full jobs. The
> schedules will automatically run daily backups, odd weeks storing into
> volumes in one pool and even weeks into the other pool.

exactly!


> Normally, I would probably use 4 pools, divided into fulls on HDD 1,
> incrementals on HDD 1, fulls on HDD 2, and incrementals on HDD 2. This
> would be primarily to have different retention times for the
> incrementals and fulls.

Interesting idea, maybe I will use it in the future


> In your case, though, the incrementals need to be retained as long as
> the fulls. I don't think with your setup you will even make use of
> automatic recycling. To re-use a drive you will just manually delete
> all of it's volumes and start over with new manually run full backups.
> Right?

hmmm,
in the details i'm using 2 volumes in each pool. So I'm using automatic
recycling. moreover I have explicitly specified to run full backup once
per year - 1st sun in 1st week.
There is one reason why You need to have 2 fulls in one pool: To be able
to use the backup as a time machine.


--
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