Re: [Bacula-users] unsubscribe

2012-12-06 Thread Geert Stappers
Op 20121206 om 01:16 schreef John Drescher:
 unsubscribe

 I think you need to follow the link that can be found at the bottom of
 every list email to do that.

Another option is to E-mail to the addresss 
bacula-users-requ...@lists.sourceforge.net


Both options are in the E-mail headers of each message that goes
through the mailinglist server.  And this time also in the message body:

List-Unsubscribe:  https://lists.sourceforge.net/lists/listinfo/bacula-users,
mailto:bacula-users-requ...@lists.sourceforge.net?subject=unsubscribe


Cheers
Geert Stappers
sysadmin
-- 
http://www.vanadcimplicity.com/
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backup lotus Domino server with bacula

2012-12-06 Thread belon
Hi,

I would like to save domino server databse, not notes if possible. Because 
notes is the client of Domino server...

I'll have a look at your link to see if can use it for domino

Regards, 

Fabrice BELON







Dan Langille d...@langille.org 
06/12/2012 01:00

A
be...@alpha-mos.com
cc
bacula-users@lists.sourceforge.net
Objet
Re: [Bacula-users] Backup lotus Domino server with bacula







On Dec 5, 2012, at 4:40 PM, be...@alpha-mos.com wrote:


Hi all,

I don't know if the question has been ever ask, but can I backup a lotus 
Domino server with Bacula ?

I saw a post on IBM site that say yes, but how to do it ?

If Lotus Domino similar to Notes?

http://www.mail-archive.com/bacula-users@lists.sourceforge.net/msg09356.html

I found that by searching for 'lotus Domino bacula' at Google.

-- 
Dan Langille - http://langille.org
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] postgres database

2012-12-06 Thread lst_hoe02

Zitat von Joseph L. Casale jcas...@activenetwerx.com:

 What process keeps the bacula database size under control?

 None, configuration does. Check your various retention levels for  
 sane values.

If there are a lot of clients/files/jobs a monthly dbcheck could  
also help to purge out no longer needed entries. Also if PostgreSQl is  
a really old version ( 8.4) the OP should check if autovacuum is  
running.

Regards

Andreas



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] postgres database

2012-12-06 Thread Dan Langille
On 2012-12-05 20:17, Jonathan Horne wrote:
 What process keeps the bacula database size under control? Mine is
 growing and growing, and I'm not sure how much space i need to
 allocate for future growth.

First, some questions:

What version of Bacula are you using?

What version of PostgreSQL are you using?

How large is your database?  I'm expecting output like this:

bacula=# select pg_size_pretty(pg_database_size('bacula'));
  pg_size_pretty

  22 GB
(1 row)

bacula=#

Next, some background, which you many already know, but is highly 
relevant
to the topic.

The database is used to store the Catalog, which is a list of what was
backed up, from what client, when, and where is it stored.  The Catalog
is one of the strongest features of Bacula. Personally, it is what drew
me to Bacula.

Retention refers to how long data remains in the Catalog.  It is *not*,
as commonly misunderstood, how long your backups are retained[1].  
There
are three retention values that can be specified:

* File Retention
* Job Retention
* Volume Retention

Once *any one* of these retention periods has expired, the Volume is 
eligible
for recycling[3].  Once a Volume is recycled, the data that *was* on 
that Volume is
lost forever.  NOTE: just because a Volume is eligible for recycling 
does not mean
that it WILL be recycled.  Bacula must first need a Volume to write to 
and be unable
(according to configuration restrictions) to create a new Volume or 
append to
an existing Volume).  Bacula recycles a Volume as a last measure.

It is important to note[2] that Catalog information is the basis for 
restoring
data.  Restores can be done without the Catalog, but I sure wouldn't 
want to do that.

I set File retention very high.  3 years.  I set Job retention very 
high.   3 years.

I then let Volume retention dictate how long a given backup is kept.  I 
keep incrementals
for three weeks. I differentials for 3 months.  I keep Fulls for 3 
years.

About database size: Disk space is cheap.   I have TB of data on disk 
and tape.  My database
is 22G.  That's a big database by some standards, but it's not a hefty 
database when PostgreSQL
id used.

I consider that ease of restore is the primary consideration.  When it 
comes time to restore data,
I want to do it right now.  I don't want to deal with bextract, bls, 
etc (the tools that you would use
if you had no Catalog).  That is why I keep my retention values so 
high.  That is why I keep
File retention = Job Retention.

My recommendation: unless you're running into problems with the 
database size, let it grow.

[1] - some may wish to argue it is the same, but it isn't.
[2] - as I wrote a while ago: 
http://dan.langille.org/2010/02/08/bacula-retention-periods/
[3] - There is more to recycling than this.  Pruning, purging, etc.
   See 
http://www.bacula.org/5.0.x-manuals/en/main/main/Automatic_Volume_Recycling.html

-- 
Dan Langille - http://langille.org/

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] bpipe plugin and variables

2012-12-06 Thread Aleksei Miheev
Hello!

I'm trying out bpipe with innobackupex script [1], and I need different
filenames or commands for Full and Incremental backups, because with
innobackupex every Incremental backup should be restored in a separate
dir, not just over the Full, and then prepared. Is there any way to
achieve that? I couldn't figure it out.

I could (probably) break it into several jobs with slightly different
filesets, but that would mean that I'll have to do restores manually,
finding all necessary JobIds and restoring them one by one.

-- 
Best regards,
Aleksei Miheev

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] lots of copy jobs fail suddenly (5.2.12)

2012-12-06 Thread Uwe Schuerkamp
On Fri, Nov 30, 2012 at 11:56:23AM +0100, Uwe Schuerkamp wrote:
 Hi folks,
 
 after a few rather uneventful weeks, all of a sudden some copy jobs
 (no pattern discernible) have started to fail with messages like
 these: 
 
 30-Nov 09:55 deniol186-dir JobId 51675: Copying using JobId=51200
 Job=deniol2147.2012-11-27_22.05.57_09
 30-Nov 09:55 deniol186-dir JobId 51675: Storage  not found, using
 Storage FileStorage_server2147_full from MediaType File_server2147_full.
 

Hi folks,

the above issue still persists, random copy jobs fail because bacula
cannot correctly determine which read storage to use.

the jobs finish successfully if I run a job manually and set all the relevant
params (pool, storage) in the bconsole dialog. 

Is there a way to enter a list of jobids to copy in bconsole by using
some special copy job selection pattern definition? Right now I have
to edit bacula-dir.conf and reload the new config, using a single
job_id to copy in a static sql select statement 8-P 


Thanks Uwe 


-- 
NIONEX --- Ein Unternehmen der Bertelsmann SE  Co. KGaA



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Reschedule is confusing

2012-12-06 Thread Oliver Hoffmann
 On Dec 5, 2012, at 12:34 PM, Oliver Hoffmann wrote:
 
  Am Wed, 5 Dec 2012 17:37:57 +0100
  schrieb Oliver Hoffmann o...@dom.de:
  
  
  Zitat von Oliver Hoffmann o...@dom.de:
  
  Hi all,
  
  recently I had the following problem. After a reboot of the
  bacula server due to malfunction of the attached RAID all jobs
  very not running again. OK, that is what I expected but not what
  I wanted as starting 50 or more jobs by hand with bconsole is a
  bit tiresome. Thus I simply waited for the next backup run but
  that means no backups for that night.
  
  Is there a way to accomplish a mass restart of
  jobs? My first thought was scripting the bconsole but maybe there
  is a build-in solution or something easier for that?
  
  Thx for ideas,
  
  Oliver
  
  You can alter the schedule time used and restart the director,
  but most of the time starting backup jobs out of the backup
  window is a bad idea anyway. If the jobs failed instead of get
  skipped you can have a look at the Reschedule On Error jobs
  setting.
  
  Regards
  
  Andreas
  
  
  
  --
  Keep yourself connected to Go Parallel: 
  BUILD Helping you discover the best ways to construct your
  parallel projects. http://goparallel.sourceforge.net
  ___
  Bacula-users mailing list
  Bacula-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/bacula-users
  
  
  I did some tests. First I stopped the bacula-fd on the client
  while a job was running. The settings on the client:
  
  Reschedule On Error = yes
  Reschedule Interval = 10 minutes
  Reschedule Times = 5
 
 I have similar;
 
   Max Start Delay = 2 minutes
   Reschedule On Error = yes
   Reschedule Interval = 20 minutes
 
 see below…

I still do not understand the delay. Anyway, better having a
unexpected slow reschedule than nothing. 

 
 
  
  The result was as expected:
  
  Fatal error: Network error with FD during Backup: ERR=No data
  available JobId 51618: Fatal error: No Job status returned from FD.
  
  That happened at 18:48. The reschedule of the job took place at
  20:41. Why not at 18:58? There were no other jobs running and the
  server was up and idle. Same for the client. The fd was stopped
  for a minute or less.
  
  Next I rebooted the server while a job was running. A status dir
  tells me No Jobs running. Status of the client:
  
  JobId 51718 Job client.2012-12-05_16.37.23_06 is running.
 Incremental System or Console Job started: 05-Dez-12 16:37
 Files=0 Bytes=0 Bytes/sec=0 Errors=0
 Files Examined=0
 SDReadSeqNo=3 fd=5
  Director connected at: 05-Dez-12 17:31
  
  But nothing happens. Is it buggy or do I miss something here?
  
  Version server: 5.2.5-0ubuntu6.2
  Version client: 5.2.5 (26 January 2012)  x86_64-pc-linux-gnu ubuntu
  12.04
  
  Greetings,
  
  Oliver
  
  
  Ok, a command before job was blocking. But now it still does not
  re-run. Does that mean, that once the server was rebooted all the
  reschedules are not taken out?
 
 
 The Reschedule command will not help you if the Director is restarted.
 

What a pity. Would be very useful though. All right, then I need a
script.

Cheers,

Oliver



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backup lotus Domino server with bacula

2012-12-06 Thread Oliver Hoffmann
 
 Hi all,
 
 I don't know if the question has been ever ask, but can I backup a
 lotus Domino server with Bacula ?
 
 I saw a post on IBM site that say yes, but how to do it ?
 
 Thanks
 
 Fabrice

Hi,

I do not know much about Domino, but once I made a backup of that DB.
The trick was the following. Let the Domino server do as much as
possible. It has its own mechanisms of backing up the DB. Then you just
simply backup the dumps by bacula. Maybe a Client Run Before Job
would be possible?

Cheers,

Oliver

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula stops writing to disk volume after 2GB

2012-12-06 Thread m.list

Bacula Version: 5.2.5

I have configured bacula to write volumes to disk, however bacula stops
writing to the volume as soon as it reaches 2gb. The file system is not an
issue as I have stored files larger than 2gb. 


06-Dec 17:22 backup-sd JobId 8421: End of Volume Full-Monthly-0005 at
0:2147475577 on device FileStorage (/nfs/backup-pool). Write of 64512
bytes got 8069.
06-Dec 17:22 backup-sd JobId 8421: End of medium on Volume
Full-Monthly-0005 Bytes=2,147,475,578 Blocks=33,288 at 06-Dec-2012 


backup1@backup:/nfs/backup-pool$ ls -alh Full-Monthly-0005 br
-rw-r- 1 bacula tape 2.0G Dec  3 16:14 Full-Monthly-0005


bacula-dir.conf:
Pool {
 Name = Full-Monthly
 Pool Type = Backup
 Recycle = yes
 Volume Retention = 5 months
 Volume Use Duration = 1 day
 Maximum Volumes = 5
 Maximum Volume Bytes = 12gb
}

bacula-sd.conf:
Device {
 Name = FileStorage
 Media Type = File
 Archive Device = /nfs/backup-pool
 LabelMedia = yes   # lets Bacula label unlabeled media
 Random Access = Yes
 RemovableMedia = no
 AlwaysOpen = no
 Label media = yes
 Maximum Volume Size = 12gb
}

In my original configuration Maximum Volume Bytes and Maximum Volume Size
were not set at all and so should have defauted to no maximum but that did
not work either.


llist media pool=Full-Monthly

  MediaId: 72
   VolumeName: Full-Monthly-0005
 Slot: 0
   PoolId: 5
MediaType: File
 FirstWritten: 2012-12-06 16:25:09
  LastWritten: 2012-12-06 17:22:21
LabelDate: 2012-12-06 16:25:03
  VolJobs: 1
 VolFiles: 0
VolBlocks: 33,288
VolMounts: 3
 VolBytes: 2,147,475,578
VolErrors: 0
VolWrites: 99,870
 VolCapacityBytes: 0
VolStatus: Full
  Enabled: 1
  Recycle: 1
 VolRetention: 12,960,000
   VolUseDuration: 86,400
   MaxVolJobs: 0
  MaxVolFiles: 0
  MaxVolBytes: 12,000,000,000
InChanger: 0
  EndFile: 0
 EndBlock: 2,147,475,577
 VolParts: 0
LabelType: 0
StorageId: 1
 DeviceId: 0
   LocationId: 0
 RecycleCount: 2
 InitialWrite: -00-00 00:00:00
ScratchPoolId: 0
RecyclePoolId: 0
  Comment: NULL


-- 
View this message in context: 
http://old.nabble.com/Bacula-stops-writing-to-disk-volume-after-2GB-tp34767126p34767126.html
Sent from the Bacula - Users mailing list archive at Nabble.com.


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula stops writing to disk volume after 2GB

2012-12-06 Thread Melissari, Ryan
 Bacula Version: 5.2.5
 
 I have configured bacula to write volumes to disk, however bacula
 stops
 writing to the volume as soon as it reaches 2gb. The file system is
 not an
 issue as I have stored files larger than 2gb.
 
 
 06-Dec 17:22 backup-sd JobId 8421: End of Volume Full-Monthly-0005
 at
 0:2147475577 on device FileStorage (/nfs/backup-pool). Write of
 64512
 bytes got 8069.
 06-Dec 17:22 backup-sd JobId 8421: End of medium on Volume
 Full-Monthly-0005 Bytes=2,147,475,578 Blocks=33,288 at 06-Dec-2012
 
 
 backup1@backup:/nfs/backup-pool$ ls -alh Full-Monthly-0005 br
 -rw-r- 1 bacula tape 2.0G Dec  3 16:14 Full-Monthly-0005
 
 
 bacula-dir.conf:
 Pool {
  Name = Full-Monthly
  Pool Type = Backup
  Recycle = yes
  Volume Retention = 5 months
  Volume Use Duration = 1 day
  Maximum Volumes = 5
  Maximum Volume Bytes = 12gb
 }
 
 bacula-sd.conf:
 Device {
  Name = FileStorage
  Media Type = File
  Archive Device = /nfs/backup-pool
  LabelMedia = yes   # lets Bacula label unlabeled
  media
  Random Access = Yes
  RemovableMedia = no
  AlwaysOpen = no
  Label media = yes
  Maximum Volume Size = 12gb
 }
 
 In my original configuration Maximum Volume Bytes and Maximum Volume
 Size
 were not set at all and so should have defauted to no maximum but
 that did
 not work either.
 
 
 llist media pool=Full-Monthly
 
   MediaId: 72
VolumeName: Full-Monthly-0005
  Slot: 0
PoolId: 5
 MediaType: File
  FirstWritten: 2012-12-06 16:25:09
   LastWritten: 2012-12-06 17:22:21
 LabelDate: 2012-12-06 16:25:03
   VolJobs: 1
  VolFiles: 0
 VolBlocks: 33,288
 VolMounts: 3
  VolBytes: 2,147,475,578
 VolErrors: 0
 VolWrites: 99,870
  VolCapacityBytes: 0
 VolStatus: Full
   Enabled: 1
   Recycle: 1
  VolRetention: 12,960,000
VolUseDuration: 86,400
MaxVolJobs: 0
   MaxVolFiles: 0
   MaxVolBytes: 12,000,000,000
 InChanger: 0
   EndFile: 0
  EndBlock: 2,147,475,577
  VolParts: 0
 LabelType: 0
 StorageId: 1
  DeviceId: 0
LocationId: 0
  RecycleCount: 2
  InitialWrite: -00-00 00:00:00
 ScratchPoolId: 0
 RecyclePoolId: 0
   Comment: NULL
 
 

If the volume was created before you made the changes to the pool resource, you 
will need to run the update volume command from the console for the volumes to 
refresh their values.  Just to double-check, what is the file system for 
/nfs/backup-pool/ ?

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula stops writing to disk volume after 2GB

2012-12-06 Thread lst_hoe02

Zitat von m.list mail.list...@googlemail.com:

 Bacula Version: 5.2.5

 I have configured bacula to write volumes to disk, however bacula stops
 writing to the volume as soon as it reaches 2gb. The file system is not an
 issue as I have stored files larger than 2gb.


 06-Dec 17:22 backup-sd JobId 8421: End of Volume Full-Monthly-0005 at
 0:2147475577 on device FileStorage (/nfs/backup-pool). Write of 64512
 bytes got 8069.

If this is really NFS double-check that both sides agree to use at  
least NFSv3 as older NFS versions have a 2GB limit and Bacula clearly  
is not able to write more data to the file in question. On the other  
side you can easily work around this with splitting many volumes of  
2GB if your expected data size isn't that big.

Regards

Andreas



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Trouble getting jobs to run simultaneously

2012-12-06 Thread Troy Kocher
All, 

Recently I've made changes to my bacula-dir and bacula-sd to with the intent of 
running simultaneous jobs.  After the changes my testing seems to indicate I 
still don't have it right.  I launched my first job 'Image_Backup' manually 
with it's default priority, then launched the retail job modifying the priority 
to 1, with the hope to force a simultaneous backup.  The retail job sat waiting 
for the image job to complete. I've attached the relevant sections from my 
bacula-dir.conf.  If anyone has any helpful thoughts I'd really appreciate it.

Troy

bacula-server-5.2.6

excerpt from bacula-dir.conf:

 Pool{
   Name  =  ImageF
   Pool Type = Backup
   Volume Use Duration =  7d
   Volume Retention = 24 months
   Catalog Files = yes
   Label Format = ImageF-
   Recycle = yes
   AutoPrune = yes
   }

Pool
{
   Name  =  RetailF
   Pool Type = Backup
   Maximum Volume Jobs = 4
   Volume Use Duration =  2d
   Volume Retention = 6 months
   Catalog Files = yes
   Label Format = RetailF-
   Recycle = yes
   AutoPrune = yes
   }

Job {
   Name = Image_Backup
   Enabled  = YES  
   Type = Backup 
   Level= Full
   Accurate= yes #[Yes|No]
   Client  = krusty-fd
   Fileset = krusty-image
   Max Wait Time = 72000
   Schedule = WeeklyCycle
   Storage = krustykrab-6
   Messages = Standard
   Pool = ImageF
   Write Bootstrap   = /data/working/image.bsr
   Priority = 50
}

Job {
   Name = Retail_Backup
   Enabled  = Yes  
   Type = Backup
   Level= Full
   Accurate= yes 
   Client  = retail-fd
   Fileset = retail
   Max Wait Time = 72000
   Schedule = WeeklyCycle
   Storage = krustykrab-5
   Messages = Standard
   Pool = RetailF
   Write Bootstrap   = /data/working/retail.bsr
   Priority = 60
}

FileSet{
   Name = krusty-image
   Include {
  Options {
Compression = GZIP
signature = SHA1
Sparse = yes
Hardlinks = no
}
@/usr/local/etc/backuplist/krusty_image_backuplist
}}

FileSet{
   Name = retail
   Include {
  Options {
Compression = GZIP
signature = SHA1
Sparse = yes
Hardlinks = no
}
@/usr/local/etc/backuplist/Retail_backuplist
}
   Exclude {
 File=/usr/home/sessions
}}

Storage {
  Name = krustykrab-6
  Address = krustykrab
  SDPort = 9103
  Password = removed
  Device = krustykrabpool-6
  Media Type = File-6
  Maximum Concurrent Jobs = 20
 }

Storage {
  Name = krustykrab-5
  Address = krustykrab
  SDPort = 9103
  Password = password
  Device = krustykrabpool-5
  Media Type = File-5
  Maximum Concurrent Jobs = 20
 }


excerpt from bacula-sd.conf

Device {
  Name = krustykrabpool-5
  Media Type = File-5
  Archive Device = /data/Retail
  LabelMedia = yes;   
  Random Access = Yes;
  AutomaticMount = yes;   
  RemovableMedia = no;
  AlwaysOpen = yes;
}

Device {
  Name = krustykrabpool-6
  Media Type = File-6
  Archive Device = /data/Image
  LabelMedia = yes;  
  Random Access = Yes;
  AutomaticMount = yes;  
  RemovableMedia = no;
  AlwaysOpen = yes;
}

_
Scanned by IBM Email Security Management Services 
powered by MessageLabs.
_

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Trouble getting jobs to run simultaneously

2012-12-06 Thread lst_hoe02

Zitat von Troy Kocher tkoc...@mtadistributors.com:

 All,

 Recently I've made changes to my bacula-dir and bacula-sd to with  
 the intent of running simultaneous jobs.  After the changes my  
 testing seems to indicate I still don't have it right.  I launched  
 my first job 'Image_Backup' manually with it's default priority,  
 then launched the retail job modifying the priority to 1, with the  
 hope to force a simultaneous backup.  The retail job sat waiting for  
 the image job to complete. I've attached the relevant sections from  
 my bacula-dir.conf.  If anyone has any helpful thoughts I'd really  
 appreciate it.

 Troy

Hello

Only Jobs with the *same* priority run concurrently if all resources  
used support concurrent use. The value of priority is only used to  
decide which Job to start first if more than one is scheduled at the  
same time.

Regards

Andreas



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Trouble getting jobs to run simultaneously

2012-12-06 Thread Diego Rubert

  
  
You can also set
Allow Mixed Priority = yes
on all your jobs.

From bacula docs:

Allow Mixed Priority = yesno
 This directive is only implemented in version 2.5 and later.
When
 set to yes (default no), this job may run even if lower priority
 jobs are already running. This means a high priority job will
not
 have to wait for other jobs to finish before starting. The
 scheduler will only mix priorities when all running jobs have
this
 set to true.

 Note that only higher priority jobs will start early. Suppose
the
 director will allow two concurrent jobs, and that two jobs with
 priority 10 are running, with two more in the queue. If a job
with
 priority 5 is added to the queue, it will be run as soon as one
of
 the running jobs finishes. However, new priority 10 jobs will
not
 be run until the priority 5 job has finished. 

--

Diego P. Rubert
Coordenadoria de Informtica
Procuradoria da Repblica no Estado de Mato Grosso do Sul
Ministrio Pblico Federal


Em 06-12-2012 18:13, lst_ho...@kwsoft.de escreveu:

  
Zitat von Troy Kocher tkoc...@mtadistributors.com:


  
All,

Recently I've made changes to my bacula-dir and bacula-sd to with  
the intent of running simultaneous jobs.  After the changes my  
testing seems to indicate I still don't have it right.  I launched  
my first job 'Image_Backup' manually with it's default priority,  
then launched the retail job modifying the priority to 1, with the  
hope to force a simultaneous backup.  The retail job sat waiting for  
the image job to complete. I've attached the relevant sections from  
my bacula-dir.conf.  If anyone has any helpful thoughts I'd really  
appreciate it.

Troy

  
  
Hello

Only Jobs with the *same* priority run concurrently if all resources  
used support concurrent use. The value of priority is only used to  
decide which Job to start first if more than one is scheduled at the  
same time.

Regards

Andreas



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



  


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Client changes host name

2012-12-06 Thread Dan Langille
My laptop has two hostnames.  One is used when it comes in over the VPN. 
Another is used when it's at home.

How do I deal with this?

I change the hostname in bacula-dir.conf and reload.

e.g. 

Client {
  Name   = laptop-fd
#  Address= laptop.example.org
  Address= laptop-vpn.example.org 
  Catalog= MyCatalog
  Password   = NotMyPassword

  File   Retention = 3 years
  JobRetention = 3 years
}

HTH.

-- 
Dan Langille - http://langille.org


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users