Re: [Bacula-users] Problem after configure and install using mysql DB.

2010-06-08 Thread Anatoly Pugachev

Look for a log file location in bacula-dir.conf file.
Also there's could be some messages in your system log files.

On 07.06.2010 / 21:08:22 -0400, Robbie Base wrote:
 Bacula does not start up.
 
 OK went thru the configuration using the mysql database. I verified the DB
 is up and running.
 I verified the db and tables are there. I see the bacula DB in mysql as well
 as the tables.
 
 
 What am I missing. When I try to start bacula I get nothing.
 
 Does bacula create any log files? I can look at?

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] new server, old client ?

2010-06-08 Thread sofsof

Hi, i would like to say if a 5.0.2 server is compatible with a 2.2 client ?

Thank for any response ! :D

+--
|This was sent by linvisi...@hotmail.fr via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] new server, old client ?

2010-06-08 Thread Daniel Kamm
sofsof wrote:
 Hi, i would like to say if a 5.0.2 server is compatible with a 2.2 client ?

Yes, you can use older bacula-fd with newer bacula-sd and bacula-dir. Be
sure, that bacula-sd and bacula-dir are on the same version.

 - Dan


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] [solved]Fw: Upgrading copy jobs to backup jobs

2010-06-08 Thread C . Keschnat


Hi,
this is from the bacula documentation:
Note that when a copy is made, the original JobIds are left unchanged. The new
copies can not be used for restoration unless you specifically choose them by
JobId. If you subsequently delete a JobId that has a copy, the copy will be
automatically upgraded to a Backup rather than a Copy, and it will subsequently
be used for restoration.

The first part works, I can restore files from the copy when I choose the job
by jobid. But after deleting the original job bacula tells me there is no
backup when trying to restore. So this automatic upgrade doesn't seem to work.
Also list jobs  still shows a C for the copy job, no B. Any ideas?

Chris



My mistake was deleting the job with delete instead of purging volumes. Now 
it works as expected.--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] new server, old client ?

2010-06-08 Thread Alan Brown
Daniel Kamm wrote:
 sofsof wrote:
 Hi, i would like to say if a 5.0.2 server is compatible with a 2.2 client ?
 
 Yes, you can use older bacula-fd with newer bacula-sd and bacula-dir. 

Older clients don't have all the features of the newer ones. In 
particular the accurate function won't work.




--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula running incremental after full job failure

2010-06-08 Thread Beck J Mr
Hi,

We had a power cut over the weekend. As look would have it, this
happened to be a weekend of full backup jobs and, as a result of the
power loss, quite a lot of the backup jobs failed.

I thought had read in the past that somebody was annoyed that Bacula
then insisted on running a full backup again because of a failure. I
thought this was rather handy as it would negate the need to manually
start up all the failed jobs.

However, when the jobs ran last night only incrementals ran. Do I need
to configure something to manually re-run failed full jobs, or did I
misinterpret what I remember reading?

Here is the client config of one of the failed machines

# Client (File Services) to backup
Client {
  Name = foobar-fd
  Address = xxx.xxx.xxx.xxx
  FDPort = 9102
  Catalog = SouthHunsley
  Password = ???!!!  # password for FileDaemon
  File Retention = 30 days# 30 days
  Job Retention = 6 months# six months
  AutoPrune = yes # Prune expired Jobs/Files
}

#=
# copied from main config file
JobDefs {
  Name = DefaultJob
  Type = Backup
  Accurate = yes
  Level = Incremental
  Pool = Default
  Messages = Standard
  Write Bootstrap = /var/bacula/%c.bsr
  Allow Duplicate Jobs = no
  Cancel Queued Duplicates = yes
}
#=

Job {
  Name = foobar-job
  Client = foobar-fd
  JobDefs = DefaultJob
  Schedule = WeeklyCycle-0
  FileSet = foobar_full-set
  Storage = foobar-storage
  Full Backup Pool = foobar_full-pool
  Differential Backup Pool = foobar_diff-pool
  Incremental Backup Pool = foobar_incr-pool
  Priority = 10
  Run Before Job = /etc/bacula/deploy/update-client.sh %c
  Client Run Before Job = \%SYSTEMROOT\%/System32/cscript.exe
C:\\Bacula\\Utils\\runbefore.wsf JobLevel=%l
}

FileSet {
  Name = foobar_full-set
  Include {
Options {
  signature = MD5
  compression = GZIP
  Exclude = yes
  IgnoreCase = yes
  @/etc/bacula/objects/aa-windows_exclude.list
  WildDir = C:/Program Files/Microsoft SQL Server
}
File = C:/
  }
}

Storage {
  Name = foobar-storage
# Do not use localhost here
  Address = xxx.xxx.xxx.xxx# N.B. Use a fully qualified
name here
  SDPort = 9103
  Password = ???!!!
  Device = foobar-storage_device
  Media Type = File
  Maximum Concurrent Jobs = 5
}

Pool {
  Name = foobar_full-pool
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 12 months
  Maximum Volume Jobs = 1
  Label Format = foobar_full-
  Maximum Volumes = 14
}

Pool {
  Name = foobar_diff-pool
  Pool Type = Backup
  Recycle = yes
  Auto Prune = yes
  Volume Retention = 124 days
  Maximum Volume Jobs = 1
  Label Format = foobar_diff-
  Maximum Volumes = 23
  }

Pool {
  Name = foobar_incr-pool
  Pool Type = Backup
  Recycle = yes
  Auto Prune = yes
  Volume Retention = 62 days
  Maximum Volume Jobs = 6
  Volume Use Duration = 4 days
  Label Format = foobar_incr-
  Maximum Volumes = 12
  }

Regards,

James Beck
Network Manager

South Hunsley School
Tel: 01482 636719
Email: james.b...@shunsley.eril.net 


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] is waiting for an appendable Volume

2010-06-08 Thread John Drescher
 first of all thanks 
 is that I stopped working without touching anything.


If you have a different retention policy on some volumes because you
changed the retention period after volumes were created or other
reasons you can have unexpected retention periods. Without the output
I asked for I can not help.

 The strange thing is that sometimes it works and I get this error other

Some times or some days?

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] low despooling speeds when parallelism is increased

2010-06-08 Thread Athanasios Douitsis
On Wed, Jun 02, 2010 at 11:29:44AM -0400, Bob Hetzel wrote:

 What CPU's do you have in your 2950?  I'm backing up to two LTO-2 in my 
 PowerEdge 2900 server (dual Xeon 5160 CPU's) and it seems to be pretty 
 maxed out with two tape drives.  On my R710 I only get 70MB/sec despool 
 rates to LTO-4 drives.
 
 If you can't get higher results when using a SAN I'd think that the 
 bottleneck is the server CPU.  If you're not CPU bound, then increasing the 
 read cache wherever you're holding the spool should help.
 
 Bob
 

Bob, sorry for the late answer,

We are not aware of any CPU bottlenecks on our setup. Our diagrams show
that both the load and the CPU usage remain quite low. On the contrary,
using a RAID10 setup increased our speed somewhat. As you indicate, the
cache should have some significance although we didn't have the chance
to play with it much. If there is more in the future I'll reply again on
the list as our tests progress.

Best Regards,
Athanasios

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Strange problem with bat

2010-06-08 Thread Heiko Schellhorn
Hi all

today I've seen a strange problem with bat esp. Version Browser.

I cannot mark files and versions of files for restore.

When I select a job and click refresh the list of jobs and the directory-tree 
is generated properly. I can navigate through the tree and expand subdirs etc.

When I click a directory it's files are displayed In the File Name tab and 
when I further click a file it's versions are displayed in Versions of File 
tab.

But I'm not able to mark the file for restore. Neither the checkbox in front of 
the file to get it's recent version nor a version of the file.

But the oddness is when I mark a whole directory for restore in Directories 
tab all it's files are marked and I'm able to uncheck single files in Files 
resp. Versions of Files tab but I'm not able to mark they again for restore.

Restore with bconsole works perfect.

Some infos about my system.

Gentoo - Linux 
Bacula 5.0.2  (just updated from 5.0.0 as I've seen the bat problem)

Before I newly setup my backup system with bacula 5.0 in february I was using 
bat together with bacula 3.x without any problems. And the config nearly kept 
the same as at the old backup-system.

Has someone also seen this phenomenon ? Any ideas how to solve it ?

Best regards

Heiko


-- 
---
  ATTENTION !  New Phone-Number:  62091   
---
Dipl. Inf. Heiko Schellhorn

University of BremenRoom:  NW1-U 2065
Inst. of Environmental Physics  Phone: +49(0)421 218 62091
P.O. Box 33 04 40   Fax:   +49(0)421 218 98 62091
D-28334 Bremen  Mail:  mailto:sch...@physik.uni-bremen.de
Germany www:   http://www.iup.uni-bremen.de
   http://www.sciamachy.de
   http://www.geoscia.de


The Greatest burden in the world is the weight of you childs coffin on 
your shoulder. Nothing in the universe can be heavier than that.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula running incremental after full job failure

2010-06-08 Thread Phil Stracchino
On 06/08/10 06:44, Beck J Mr wrote:
 Hi,
 
 We had a power cut over the weekend. As look would have it, this
 happened to be a weekend of full backup jobs and, as a result of the
 power loss, quite a lot of the backup jobs failed.
 
 I thought had read in the past that somebody was annoyed that Bacula
 then insisted on running a full backup again because of a failure. I
 thought this was rather handy as it would negate the need to manually
 start up all the failed jobs.
 
 However, when the jobs ran last night only incrementals ran. Do I need
 to configure something to manually re-run failed full jobs, or did I
 misinterpret what I remember reading?

[...]

 JobDefs {
   Name = DefaultJob
   Type = Backup
   Accurate = yes
   Level = Incremental
   Pool = Default
   Messages = Standard
   Write Bootstrap = /var/bacula/%c.bsr
   Allow Duplicate Jobs = no
   Cancel Queued Duplicates = yes
 }

You need to add Rerun Failed Levels = yes in this resource.


-- 
  Phil Stracchino, CDK#2 DoD#299792458 ICBM: 43.5607, -71.355
  ala...@caerllewys.net   ala...@metrocast.net   p...@co.ordinate.org
 Renaissance Man, Unix ronin, Perl hacker, Free Stater
 It's not the years, it's the mileage.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] ActionOnPurge=Truncate does not work automatically

2010-06-08 Thread Marc Schiffbauer
Hi all,

maybe I have just some problems understanding the ActionOnPurge
feature.

In one of my file pools (VestaFtp) I have set 

  Action On Purge = Truncate

I have updated existing volumes, so actiononpurge is set to 1 for
all volumes in the pool.

What is NOT working:
  * volumes are never truncated automatically by the storage daemon
when it recycles a volume.
Is it intended that recycled volumes will not be truncated before
writing to them again?
  * volumes are never truncated if I manually purge them with bat
for example


The only thing that DOES WORK is:
  * When I enter the following command in bconsole manually:

  purge volume action=truncate storage=vesta-sd pool=VestaFtp

That way the storage deamon will truncate every vol with status
purged:

 [...]
 3000 OK label. VolBytes=197 DVD=0 Volume=FtpVol-0085 Device=FtpFileStorage 
(/mnt/backup)
 The volume FtpVol-0085 has been truncated
 3000 OK label. VolBytes=197 DVD=0 Volume=FtpVol-0030 Device=FtpFileStorage 
(/mnt/backup)
 The volume FtpVol-0030 has been truncated
 3000 OK label. VolBytes=197 DVD=0 Volume=FtpVol-0004 Device=FtpFileStorage 
(/mnt/backup)
 The volume FtpVol-0004 has been truncated
 [...]


What is the Action On Purge = Truncate config option actually good for if 
truncating of 
volumes only happens on a manual purge with explicit action=truncate?

TIA
-Marc
-- 
8AAC 5F46 83B4 DB70 8317  3723 296C 6CCA 35A6 4134

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Waiting on max storage jobs

2010-06-08 Thread Phil Stracchino
There was some discussion a while back of an error state in which no new
jobs could be started in Bacula, with all jobs showing Waiting on max
storage jobs even though the configuration was completely correct and
no concurrency limits had been exceeded.  I ran into this problem myself
yesterday, and I have some insight on it.

My configuration has been running essentially unmodified for months
since the last configuration change, with the exception of several
updated Filesets, and the previous night's incrementals ran perfectly.
However, the *incrementals* run to a disk storage daemon located on the
same machine as the Director, which has not been rebooted in many
months.  The *Full* backups that were supposed to run Sunday night run
to a storage daemon located on a different machine, which was most
recently rebooted only a few days ago to install an uprated power
supply.[1]  This detail did not actually occur to me until this morning;
yesterday, all I knew was that nothing was wrong, it just doesn't
work, and all jobs were waiting on max storage jobs with nothing
running and an empty, labelled LTO2 tape mounted on the tape drive.
With nothing else that I could think of, I cancelled all the jobs,
restarted Bacula, and restarted the jobs; and everything Just Worked.


So.  I don't know whether a situation like this applies in the other
cases in which people have run into this problem; but there is a lesson
to be learned from it.  Bacula *clients* are dynamic; you can start
and stop them at will, completely independent of the Director, so long
as a job is not running on them at the time.  But if you have to restart
*any* Storage daemon, *for any reason*, you should restart the Director
that controls it *as well*, *after* restarting the storage daemon, to
make sure the Director actually has a clean connection to the restarted
storage daemon.


___
[1]  It's not relevant to this issue, but I'll tell you the reason
behind this anyway just in case anyone else runs into it.  I'd recently
upgraded the memory on the machine to the maximum it will hold, and
immediately started getting memory failures - gcc internal compiler
errors, kernel oopses, even kernel panics - but only when the machine
was under heavy load.

At first I suspected a problem with one of the new memory modules, but
memtest86+ did not find anything.  It turned out that the problem went
away if I removed any one memory module, and it did not matter which
module was removed nor which slot was left empty.  I considered a
problem with the memory controller, but there have been no reports of
memory controller issues with this motherboard or processor.

The only theory that I could think of - which turned out to be correct -
was that although in theory adequate for the machine, the power supply
(a no-name generic brand) was not actually capable of putting out its
full rated power, and in particular, when the machine was working hard
and drawing peak load, the power supply was allowing the 3.3v rail to
sag just enough to start causing random memory failures.  I tested the
theory by installing a new name-brand 650W power supply, and the memory
problems vanished.  (As a bonus, the new supply is a switching power
supply that is more efficient than the old one, and so the machine is
probably now actually drawing less power overall.)

So, if you start getting random memory errors after performing a memory
upgrade ... consider the power supply, and make sure it *REALLY IS*
putting out enough power *under full load* to drive everything in the
system.  In this case, based on my calculations, the original power
supply had to be falling short of its rated power output by almost 17%.


-- 
  Phil Stracchino, CDK#2 DoD#299792458 ICBM: 43.5607, -71.355
  ala...@caerllewys.net   ala...@metrocast.net   p...@co.ordinate.org
 Renaissance Man, Unix ronin, Perl hacker, Free Stater
 It's not the years, it's the mileage.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula running incremental after full job failure

2010-06-08 Thread Beck J Mr
Thanks Phil.

In the end I decided to run them manually after all. I read the docs
regarding this option and decided it was a bad idea because of a failed
job is defined as one that has not terminated normally, which includes
any running job of the same name. I have several jobs which attempt to
run over the weekend which would be fine when differentials are running,
but when my once-monthly full jobs run, there are always a number of
jobs which try to run when the full job is still going.

Cheers
James

-Original Message-
From: Phil Stracchino [mailto:ala...@metrocast.net] 
Sent: 08 June 2010 13:48
To: bacula-users@lists.sourceforge.net
Subject: Re: [Bacula-users] Bacula running incremental after full job
failure

On 06/08/10 06:44, Beck J Mr wrote:
 Hi,
 
 We had a power cut over the weekend. As look would have it, this 
 happened to be a weekend of full backup jobs and, as a result of the 
 power loss, quite a lot of the backup jobs failed.
 
 I thought had read in the past that somebody was annoyed that Bacula 
 then insisted on running a full backup again because of a failure. I 
 thought this was rather handy as it would negate the need to manually 
 start up all the failed jobs.
 
 However, when the jobs ran last night only incrementals ran. Do I need

 to configure something to manually re-run failed full jobs, or did I 
 misinterpret what I remember reading?

[...]

 JobDefs {
   Name = DefaultJob
   Type = Backup
   Accurate = yes
   Level = Incremental
   Pool = Default
   Messages = Standard
   Write Bootstrap = /var/bacula/%c.bsr
   Allow Duplicate Jobs = no
   Cancel Queued Duplicates = yes
 }

You need to add Rerun Failed Levels = yes in this resource.


-- 
  Phil Stracchino, CDK#2 DoD#299792458 ICBM: 43.5607, -71.355
  ala...@caerllewys.net   ala...@metrocast.net   p...@co.ordinate.org
 Renaissance Man, Unix ronin, Perl hacker, Free Stater
 It's not the years, it's the mileage.


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's
Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit.  See the
prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Question on recycling migrated volumes

2010-06-08 Thread Robert LeBlanc
I've been looking through the manual and I can't find a clear answer. We are
doing d2d2t and we would like to recycle volumes that have all jobs migrated
first, even if that means the retention period of the volume is not up.
Right now, I think the retention period has to expire before the volume is
considered to be recycled. The problem comes where we may have a large flux
of data some data and very little for a while. We have set our migration
policy for three weeks and our retention for four weeks, but sometimes we
have a lot of volumes that have been migrated and are just sitting taking up
disk space that could be used for other back-ups (we have to keep a lot of
disk space free to compensate for this flux) and then we wind up with a lot
of volumes with only about half really having data in our 3 week migration
window. I'm looking at Action on Purge to free the disk space of unused
volumes, but I don't think the volume is purged when all the jobs are
migrated.

If someone has clarification or a good idea of how to accomplish our goals,
it would be helpful.

Thank you,

Robert LeBlanc
Life Sciences  Undergraduate Education Computer Support
Brigham Young University
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] unload tape error

2010-06-08 Thread Jeremiah D. Jester
I'm having problems simply unloading a tape from my changer. Also, not sure if 
the 'Hardware Error' is due to me addressing the device incorrectly or if there 
is actually an issue. No more info found in the logs. Any ideas?

Thanks,
JJ

[r...@monk bacula]# mtx -f /dev/sg3 status
  Storage Changer /dev/sg3:2 Drives, 23 Slots ( 1 Import/Export )
Data Transfer Element 0:Full (Storage Element 2 Loaded):VolumeTag = KL0354
Data Transfer Element 1:Full (Storage Element 21 Loaded):VolumeTag = KL0343
  Storage Element 1:Full :VolumeTag=KL0388
  Storage Element 2:Empty:VolumeTag=
  Storage Element 3:Full :VolumeTag=KL0357
  Storage Element 4:Full :VolumeTag=KL0368
  Storage Element 5:Full :VolumeTag=KL0360
  Storage Element 6:Full :VolumeTag=KL0308
  Storage Element 7:Full :VolumeTag=KL0421
  Storage Element 8:Full :VolumeTag=KL0420
  Storage Element 9:Full :VolumeTag=KL0442
  Storage Element 10:Full :VolumeTag=KL0398
  Storage Element 11:Full :VolumeTag=KL0309
  Storage Element 12:Full :VolumeTag=KL0400
  Storage Element 13:Full :VolumeTag=KL0318
  Storage Element 14:Full :VolumeTag=000108
  Storage Element 15:Full :VolumeTag=KL0389
  Storage Element 16:Full :VolumeTag=000102
  Storage Element 17:Full :VolumeTag=KL0410
  Storage Element 18:Full :VolumeTag=KL0317
  Storage Element 19:Full :VolumeTag=KL0439
  Storage Element 20:Full :VolumeTag=KL0369
  Storage Element 21:Empty:VolumeTag=
  Storage Element 22:Full :VolumeTag=KL0328
  Storage Element 23 IMPORT/EXPORT:Empty:VolumeTag=

[r...@monk bacula]# mtx -f /dev/sg3 unload /dev/sg3:1 2
Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense: 
Long Report=yes
mtx: Request Sense: Valid Residual=no
mtx: Request Sense: Error Code=70 (Current)
mtx: Request Sense: Sense Key=Hardware Error
mtx: Request Sense: FileMark=no
mtx: Request Sense: EOM=no
mtx: Request Sense: ILI=no
mtx: Request Sense: Additional Sense Code = 53
mtx: Request Sense: Additional Sense Qualifier = 00
mtx: Request Sense: BPV=no
mtx: Request Sense: Error in CDB=no
mtx: Request Sense: SKSV=no
MOVE MEDIUM from Element Address 256 to 4097 Failed

[r...@monk bacula]# mtx -f /dev/sg3 unload 2
Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense: 
Long Report=yes
mtx: Request Sense: Valid Residual=no
mtx: Request Sense: Error Code=70 (Current)
mtx: Request Sense: Sense Key=Hardware Error
mtx: Request Sense: FileMark=no
mtx: Request Sense: EOM=no
mtx: Request Sense: ILI=no
mtx: Request Sense: Additional Sense Code = 53
mtx: Request Sense: Additional Sense Qualifier = 00
mtx: Request Sense: BPV=no
mtx: Request Sense: Error in CDB=no
mtx: Request Sense: SKSV=no
MOVE MEDIUM from Element Address 256 to 4097 Failed

Jeremiah Jester
Senior Informatics Specialist
Microbiology, Katze Lab
Box 357242
P: 206-732-6185

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] unload tape error

2010-06-08 Thread John Drescher
2010/6/8 Jeremiah D. Jester jj...@u.washington.edu:
 I’m having problems simply unloading a tape from my changer. Also, not sure
 if the ‘Hardware Error’ is due to me addressing the device incorrectly or if
 there is actually an issue. No more info found in the logs. Any ideas?



 Thanks,

 JJ



 [r...@monk bacula]# mtx -f /dev/sg3 status

   Storage Changer /dev/sg3:2 Drives, 23 Slots ( 1 Import/Export )

 Data Transfer Element 0:Full (Storage Element 2 Loaded):VolumeTag = KL0354

 Data Transfer Element 1:Full (Storage Element 21 Loaded):VolumeTag = KL0343

   Storage Element 1:Full :VolumeTag=KL0388

   Storage Element 2:Empty:VolumeTag=

   Storage Element 3:Full :VolumeTag=KL0357

   Storage Element 4:Full :VolumeTag=KL0368

   Storage Element 5:Full :VolumeTag=KL0360

   Storage Element 6:Full :VolumeTag=KL0308

   Storage Element 7:Full :VolumeTag=KL0421

   Storage Element 8:Full :VolumeTag=KL0420

   Storage Element 9:Full :VolumeTag=KL0442

   Storage Element 10:Full :VolumeTag=KL0398

   Storage Element 11:Full :VolumeTag=KL0309

   Storage Element 12:Full :VolumeTag=KL0400

   Storage Element 13:Full :VolumeTag=KL0318

   Storage Element 14:Full :VolumeTag=000108

   Storage Element 15:Full :VolumeTag=KL0389

   Storage Element 16:Full :VolumeTag=000102

   Storage Element 17:Full :VolumeTag=KL0410

   Storage Element 18:Full :VolumeTag=KL0317

   Storage Element 19:Full :VolumeTag=KL0439

   Storage Element 20:Full :VolumeTag=KL0369

   Storage Element 21:Empty:VolumeTag=

   Storage Element 22:Full :VolumeTag=KL0328

   Storage Element 23 IMPORT/EXPORT:Empty:VolumeTag=



 [r...@monk bacula]# mtx -f /dev/sg3 unload /dev/sg3:1 2

 Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense:
 Long Report=yes

 mtx: Request Sense: Valid Residual=no

 mtx: Request Sense: Error Code=70 (Current)

 mtx: Request Sense: Sense Key=Hardware Error

 mtx: Request Sense: FileMark=no

 mtx: Request Sense: EOM=no

 mtx: Request Sense: ILI=no

 mtx: Request Sense: Additional Sense Code = 53

 mtx: Request Sense: Additional Sense Qualifier = 00

 mtx: Request Sense: BPV=no

 mtx: Request Sense: Error in CDB=no

 mtx: Request Sense: SKSV=no

 MOVE MEDIUM from Element Address 256 to 4097 Failed



 [r...@monk bacula]# mtx -f /dev/sg3 unload 2

 Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense:
 Long Report=yes

 mtx: Request Sense: Valid Residual=no

 mtx: Request Sense: Error Code=70 (Current)

 mtx: Request Sense: Sense Key=Hardware Error

 mtx: Request Sense: FileMark=no

 mtx: Request Sense: EOM=no

 mtx: Request Sense: ILI=no

 mtx: Request Sense: Additional Sense Code = 53

 mtx: Request Sense: Additional Sense Qualifier = 00

 mtx: Request Sense: BPV=no

 mtx: Request Sense: Error in CDB=no

 mtx: Request Sense: SKSV=no

 MOVE MEDIUM from Element Address 256 to 4097 Failed



Bacula does this at times. I have this happen 1 time per 3 months.
Stop bacula-sd. Then unload the st driver then the scsi driver. Then
try to unload the tape manually in the archive. Then reverse your
steps. And finally update slots.


There was a thread about this 1 to 2 months ago but I can not find it
at the moment.

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] unload tape error

2010-06-08 Thread John Drescher
On Tue, Jun 8, 2010 at 1:35 PM, Jeremiah D. Jester
jj...@u.washington.edu wrote:
 How do you unload the st (?) and scsi module?

modprobe -r st

For the scsi driver you have to know what driver is running.


To reload the driver use modprobe withount the -r parameter.

modprobe st



John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Deduplication Using Base Jobs

2010-06-08 Thread Steve O'Brien
Does anyone have a clear example of their base job config that they would like 
to share?

Seems like a pretty big feature to be so sparsely documented!

TIA,
Steve

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula does not do backups

2010-06-08 Thread mst

Select level (1-5): 1
Run Backup job
JobName:  pcuser
Level:Base
Client:   pcuser-fd
FileSet:  pcuserFileSet
Pool: backup (From Job resource)
Storage:  FileStorage (From Job resource)
When: 2010-06-08 08:56:28
Priority: 10
OK to run? (yes/mod/no): y
Job queued. JobId=14849
You have messages.
*
08-Jun 07:55 asterisk-fd JobId 14813: Fatal error: job.c:1808 Comm error with 
SD. bad response to Append Data. ERR=No data available
08-Jun 08:56 merlin-dir: Start Backup JobId 14849, 
Job=pcuser.2010-06-08_08.56.39
08-Jun 08:56 merlin-dir: Using Device FileStorage
08-Jun 08:56 merlin-sd: Job pcuser.2010-06-08_08.56.39 waiting. Cannot find any 
appendable volumes.
Please use the label  command to create a new Volume for:
Storage:  FileStorage (/u01/bacula-backup)
Pool: backup
Media type:   File

+--
|This was sent by adam.gr...@comarch.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] unload tape error

2010-06-08 Thread Alan Brown
Jeremiah D. Jester wrote:
 I'm having problems simply unloading a tape from my changer. Also, not sure 
 if the 'Hardware Error' is due to me addressing the device incorrectly or if 
 there is actually an issue. No more info found in the logs. Any ideas?

 [r...@monk bacula]# mtx -f /dev/sg3 unload /dev/sg3:1 2

This should be mtx -f /dev/sg3 unload 2 0

 [r...@monk bacula]# mtx -f /dev/sg3 unload 2

In this case the 0 is implied

To unload the other drive would be mtx -f /defv/sg3 unload 21 1

try these with bacula-sd not running first.

If they work and you have trouble when bacula-sd is going, then make 
sure you have released the tapes within bconsole before trying to move 
them around - and if bacula itself is reporting problems then make sure 
you have permisions set correctly for user bacula to execute commands 
(su - bacula and try mtx again)

The thread a month ago was about the tape drives not being unlocked 
before bacula calls mtx - it's unknown if this is a bacula issue, a 
hardware issue or a race condition at this point.





--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula does not do backups

2010-06-08 Thread John Drescher
On Tue, Jun 8, 2010 at 9:44 AM, mst bacula-fo...@backupcentral.com wrote:

 Select level (1-5): 1
 Run Backup job
 JobName:  pcuser
 Level:    Base
 Client:   pcuser-fd
 FileSet:  pcuserFileSet
 Pool:     backup (From Job resource)
 Storage:  FileStorage (From Job resource)
 When:     2010-06-08 08:56:28
 Priority: 10
 OK to run? (yes/mod/no): y
 Job queued. JobId=14849
 You have messages.
 *
 08-Jun 07:55 asterisk-fd JobId 14813: Fatal error: job.c:1808 Comm error with 
 SD. bad response to Append Data. ERR=No data available
 08-Jun 08:56 merlin-dir: Start Backup JobId 14849, 
 Job=pcuser.2010-06-08_08.56.39
 08-Jun 08:56 merlin-dir: Using Device FileStorage
 08-Jun 08:56 merlin-sd: Job pcuser.2010-06-08_08.56.39 waiting. Cannot find 
 any appendable volumes.
 Please use the label  command to create a new Volume for:
    Storage:      FileStorage (/u01/bacula-backup)
    Pool:         backup
    Media type:   File


It can not backup if there are no appendable volumes.

Post the output of

list media pool=backup

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula does not do backups

2010-06-08 Thread mst

Thank You John for helping.

Here is the output:

./bconsole
Connecting to Director merlin:9101
1000 OK: merlin-dir Version: 2.2.0 (08 August 2007)
Enter a period to cancel a command.
*list media pool=backup
Automatically selected Catalog: MyCatalog
Using Catalog MyCatalog
+-+-+---+-+-+--+--+-+--+---+---+-+
| MediaId | VolumeName  | VolStatus | Enabled | VolBytes| VolFiles | 
VolRetention | Recycle | Slot | InChanger | MediaType | LastWritten |
+-+-+---+-+-+--+--+-+--+---+---+-+
|  22 | backup-0001 | Error |   1 |   5,482,015 |0 |
  518,400 |   1 |0 | 0 | File  | 2007-08-30 16:05:26 |
|  25 | backup-0003 | Error |   1 |   1,835,335,916 |0 |
  518,400 |   1 |0 | 0 | File  | 2007-10-04 15:55:17 |
|  29 | backup-0007 | Error |   1 |   5,146,691,107 |1 |
  518,400 |   1 |0 | 0 | File  | 2008-02-20 18:22:31 |
|  30 | backup-0008 | Error |   1 |  34,662,333,158 |8 |
  518,400 |   1 |0 | 0 | File  | 2008-02-04 13:00:05 |
|  31 | backup-0009 | Error |   1 |  20,100,295,965 |4 |
  518,400 |   1 |0 | 0 | File  | 2008-04-09 13:00:05 |
|  32 | backup-0010 | Error |   1 |  46,018,537,140 |   10 |
  518,400 |   1 |0 | 0 | File  | 2008-05-06 16:33:18 |
|  34 | backup-0011 | Error |   1 |  28,428,546,245 |6 |
  518,400 |   1 |0 | 0 | File  | 2009-12-16 21:00:17 |
|  35 | backup-0012 | Error |   1 |   9,396,252,674 |2 |
  518,400 |   1 |0 | 0 | File  | 2010-01-26 21:00:06 |
|  36 | backup-0013 | Error |   1 | 103,511,549,963 |   24 |
  518,400 |   1 |0 | 0 | File  | 2010-03-31 20:39:03 |
|  37 | backup-0014 | Error |   0 |   3,563,227,744 |0 |
  518,400 |   1 |0 | 0 | File  | 2010-01-27 21:00:04 |
+-+-+---+-+-+--+--+-+--+---+---+-+
You have messages.

+--
|This was sent by adam.gr...@comarch.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula does not do backups

2010-06-08 Thread John Drescher
 Here is the output:

 ./bconsole
 Connecting to Director merlin:9101
 1000 OK: merlin-dir Version: 2.2.0 (08 August 2007)
 Enter a period to cancel a command.
 *list media pool=backup
 Automatically selected Catalog: MyCatalog
 Using Catalog MyCatalog
 +-+-+---+-+-+--+--+-+--+---+---+-+
 | MediaId | VolumeName  | VolStatus | Enabled | VolBytes        | VolFiles | 
 VolRetention | Recycle | Slot | InChanger | MediaType | LastWritten         |
 +-+-+---+-+-+--+--+-+--+---+---+-+
 |      22 | backup-0001 | Error     |       1 |       5,482,015 |        0 |  
     518,400 |       1 |    0 |         0 | File      | 2007-08-30 16:05:26 |
 |      25 | backup-0003 | Error     |       1 |   1,835,335,916 |        0 |  
     518,400 |       1 |    0 |         0 | File      | 2007-10-04 15:55:17 |
 |      29 | backup-0007 | Error     |       1 |   5,146,691,107 |        1 |  
     518,400 |       1 |    0 |         0 | File      | 2008-02-20 18:22:31 |
 |      30 | backup-0008 | Error     |       1 |  34,662,333,158 |        8 |  
     518,400 |       1 |    0 |         0 | File      | 2008-02-04 13:00:05 |
 |      31 | backup-0009 | Error     |       1 |  20,100,295,965 |        4 |  
     518,400 |       1 |    0 |         0 | File      | 2008-04-09 13:00:05 |
 |      32 | backup-0010 | Error     |       1 |  46,018,537,140 |       10 |  
     518,400 |       1 |    0 |         0 | File      | 2008-05-06 16:33:18 |
 |      34 | backup-0011 | Error     |       1 |  28,428,546,245 |        6 |  
     518,400 |       1 |    0 |         0 | File      | 2009-12-16 21:00:17 |
 |      35 | backup-0012 | Error     |       1 |   9,396,252,674 |        2 |  
     518,400 |       1 |    0 |         0 | File      | 2010-01-26 21:00:06 |
 |      36 | backup-0013 | Error     |       1 | 103,511,549,963 |       24 |  
     518,400 |       1 |    0 |         0 | File      | 2010-03-31 20:39:03 |
 |      37 | backup-0014 | Error     |       0 |   3,563,227,744 |        0 |  
     518,400 |       1 |    0 |         0 | File      | 2010-01-27 21:00:04 |
 +-+-+---+-+-+--+--+-+--+---+---+-+
 You have messages.


All volumes are marked as Error so bacula can not use any of them.
They need to be marked as Purged or Append. Besides the ancient
version of bacula installed that you should upgrade if possible, you
really need to figure out why every volume is marked as Error. Is the
storage out of space?

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula 2.4.4 5.* questions

2010-06-08 Thread Shawn
Hey, long time no speak,

I'm happy to finally see that Ubuntu's got Bacula 5.0 working as
part of their packages, and have been toying with a development server
to see how things will pan out for us during upgrade.

We've been using Ubuntu Server 9.10 64-bit with Bacula 2.4.4 all
around, and the only hold up before was that VSS wasn't working properly
when connecting to a client that was Windows Server 2008 x64, I
understood these problems were fixed in 3.0, but Ubuntu never got around
to adding it as part of their repos until their current 10.04 release.

I have a few questions I was hoping some of you might be able to
answer me on:

1) I'm using a File based storage on the server, during upgrade - will I
be able to depend on those original Full Backups, or am I looking at
starting all those full backups from scratch?

2) It's been a while since I tinkered with it, but, is there something
in the FileSet I have to specify to get VSS working on that Windows
Server 2008 x64 client, or is that business now locked in by default?
File set is below.

3) Should I worry about the clients? They're all 2.4.4 currently, I had
suspected updating them to 5.0 would be optimal after testing, but
wanted some input (I already know I'll probably have to install 5.0 on
the win2k8x64 server).

4) I'm planning on just doing a boatload of cut/paste since I'm not sure
how the upgrade is going to work with my existing configuration files -
has anyone actually been using Ubuntu package-based updates and have any
success stories without having to re-update all config files? Just
curious.

FileSet {
  Name = solarset
  Ignore FileSet Changes = yes
  Include {
Options {# exclude
  exclude = yes
  Ignore Case = yes
  WildFile = *.tmp
  Wild = [A-Z]:/pagefile.sys
  wilddir = [A-Z]:/Boot
  wilddir = [A-Z]:/Temp
  wilddir = [A-Z]:/Windows/Temp*
  wilddir = *Temporary Internet Files*
#  WildDir =
[A-Z]:/Users/*/AppData/*/Mozilla/Firefox/Profiles/*/Cache
#  WildDir =
[A-Z]:/Users/*/AppData/*/Mozilla/Firefox/Profiles/*/*/Cache.Trash
#  Wild = [A-Z]:/Users/*/AppData/Local/Mozilla/Firefox/*
#  Wild = [A-Z]:/Users/*/AppData/*/Microsoft/*
#  Wild = [A-Z]:/Users/*/AppData/*
  WildDir = [A-Z]:/$Recycle.Bin
  WildDir = [A-Z]:/Documents and Settings
  WildDir = [A-Z]:/CPQSYSTEM
  WildDir = [A-Z]:/compaq
  WildDir = [A-Z]:/Brother-MFC-7820N
  WildDir = [A-Z]:/HP
  WildDir = [A-Z]:/HP PCL5 Universal Print Driver
  WildDir = [A-Z]:/drivers
  WildDir = [A-Z]:/p21_updates
  WildDir = [A-Z]:/Windows
  WildDir = [A-Z]:/Users/*/Documents/My Music
  WildDir = [A-Z]:/Users/*/Documents/My Videos
  WildDir = [A-Z]:/Users/*/Documents/My Pictures
  Wild = [A-Z]:/Users/*/Documents/My Music/*
  Wild = [A-Z]:/Users/*/Documents/My Videos/*
  Wild = [A-Z]:/Users/*/Documents/My Pictures/*
  WildDir = [A-Z]:/ProgramData/Application Data
  WildDir = [A-Z]:/ProgramData/Desktop
  WildDir = [A-Z]:/ProgramData/Documents
  WildDir = [A-Z]:/ProgramData/Favorites
  WildDir = [A-Z]:/ProgramData/Start Menu
  WildDir = [A-Z]:/ProgramData/Templates
  WildDir = [A-Z]:/Users/*/Application Data
  WildDir = [A-Z]:/Users/*/Cookies
  WildDir = [A-Z]:/Users/*/Local Settings
  WildDir = [A-Z]:/Users/*/My Documents
  WildDir = [A-Z]:/Users/*/NetHood
  WildDir = [A-Z]:/Users/*/PrintHood
  WildDir = [A-Z]:/Users/*/Recent
  WildDir = [A-Z]:/Users/*/SendTo
  WildDir = [A-Z]:/Users/*/Start Menu
  WildDir = [A-Z]:/Users/*/Templates
  WildDir = [A-Z]:/Users/Default User
  Wild = [A-Z]:/Users/*/NTUSER.DAT*
  WildDir = [A-Z]:/Users/All Users
}
Options {   # include
  Ignore Case = yes
  signature = SHA1
  compression = GZIP
  noatime = yes
  onefs = yes
  ignore case = yes
#  WildDir = [A-Z]:/Users/*/AppData/*/Mozilla/Firefox/Profiles/
#  WildDir = [A-Z]:/Users/*/AppData/*/
  WildDir = [A-Z]:/Users/*/AppData
  Wild = [A-Z]:/Users/*/AppData/*
  WildDir = [A-Z]:/Users/*/AppData/Local
  Wild = [A-Z]:/Users/*/AppData/Local/*
  WildDir = [A-Z]:/Users/*/AppData/LocalLow
  Wild = [A-Z]:/Users/*/AppData/LocalLow/*
  WildDir = [A-Z]:/Users/*/AppData/Roaming
  Wild = [A-Z]:/Users/*/AppData/Roaming/*
#  Wild = [A-Z]:/Users/*/AppData/*/Mozilla/Firefox/Profiles/*
#  Wild = [A-Z]:/Users/*/AppData/*/*
#WildDir = [A-Z]:/Users/*/AppData/*/Identities
#WildDir = [A-Z]:/Users/*/AppData/*/Mozilla
#WildDir = [A-Z]:/Users/*/AppData/*/Thunderbird
#WildDir = [A-Z]:/Users/*/AppData/*/Microsoft
#WildDir = [A-Z]:/Users/*/AppData/*/Application Data
WildDir = [A-Z]:/Users/*/Documents
WildDir = [A-Z]:/Users/*/Desktop
WildDir = [A-Z]:/Users/*/Favorites
#Wild = [A-Z]:/Users/*/AppData/*/Identities/*
#Wild = [A-Z]:/Users/*/AppData/*/Mozilla/*
#Wild = 

[Bacula-users] labeling my volumes

2010-06-08 Thread Jeremiah D. Jester

I've just bacula is working state where it  can connect to clients and the the 
required daemons. I'm now trying to prepare a volume to write too via bconsole. 
Is manual load usually required for bacula or is this a configuration issue?

Thanks.
JJ

*label
Automatically selected Catalog: MyCatalog
Using Catalog MyCatalog
The defined Storage resources are:
 1: File
 2: Tape
Select Storage resource (1-2): 2
Enter autochanger drive[0]:
Enter new Volume name: Offsite-Vol1-6-8-10
Enter slot (0 or Enter for none):
Defined Pools:
 1: Catalog
 2: Offsite
 3: Onsite
 4: Scratch
Select the Pool (1-4): 2
Connecting to Storage daemon Tape at bacula.microslu.washington.edu:9103 ...
Sending label command for Volume Offsite-Vol1-6-8-10 Slot 0 ...
Invalid slot=0 defined in catalog for Volume  on Drive1 (/dev/st0). Manual 
load may be required.
3301 Issuing autochanger loaded? drive 0 command.
3302 Autochanger loaded? drive 0, result: nothing loaded.
3910 Unable to open device Drive1 (/dev/st0): ERR=dev.c:491 Unable to open 
device Drive1 (/dev/st0): ERR=No medium found

Label command failed for Volume Offsite-Vol1-6-8-10.
Do not forget to mount the drive!!!
You have messages.
*


Jeremiah Jester
Senior Informatics Specialist
Microbiology, Katze Lab
Box 357242
P: 206-732-6185

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] labeling my volumes

2010-06-08 Thread Alex Chekholko
On Tue, 8 Jun 2010 13:59:32 -0700
Jeremiah D. Jester jj...@u.washington.edu wrote:

 
 I've just bacula is working state where it  can connect to clients and the 
 the required daemons. I'm now trying to prepare a volume to write too via 
 bconsole. Is manual load usually required for bacula or is this a 
 configuration issue?
 
 Thanks.
 JJ
 
 *label
 Automatically selected Catalog: MyCatalog
 Using Catalog MyCatalog
 The defined Storage resources are:
  1: File
  2: Tape
 Select Storage resource (1-2): 2
 Enter autochanger drive[0]:
 Enter new Volume name: Offsite-Vol1-6-8-10
 Enter slot (0 or Enter for none):
 Defined Pools:
  1: Catalog
  2: Offsite
  3: Onsite
  4: Scratch
 Select the Pool (1-4): 2
 Connecting to Storage daemon Tape at bacula.microslu.washington.edu:9103 ...
 Sending label command for Volume Offsite-Vol1-6-8-10 Slot 0 ...
 Invalid slot=0 defined in catalog for Volume  on Drive1 (/dev/st0). 
 Manual load may be required.
 3301 Issuing autochanger loaded? drive 0 command.
 3302 Autochanger loaded? drive 0, result: nothing loaded.
 3910 Unable to open device Drive1 (/dev/st0): ERR=dev.c:491 Unable to open 
 device Drive1 (/dev/st0): ERR=No medium found
 
 Label command failed for Volume Offsite-Vol1-6-8-10.
 Do not forget to mount the drive!!!
 You have messages.
 *

You probably forgot an 'update slots'.  But more generally, make sure all of 
the btape tests work first (see tape testing section of the manual.

Regards,
-- 
Alex Chekholko   ch...@genomics.upenn.edu

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] unload tape error

2010-06-08 Thread John Drescher
 [r...@monk bacula]# mtx -f /dev/sg3 status

   Storage Changer /dev/sg3:2 Drives, 23 Slots ( 1 Import/Export )

 Data Transfer Element 0:Full (Storage Element 2 Loaded):VolumeTag = KL0354

 Data Transfer Element 1:Full (Storage Element 21 Loaded):VolumeTag = KL0343

   Storage Element 1:Full :VolumeTag=KL0388

   Storage Element 2:Empty:VolumeTag=

   Storage Element 3:Full :VolumeTag=KL0357

   Storage Element 4:Full :VolumeTag=KL0368

   Storage Element 5:Full :VolumeTag=KL0360

   Storage Element 6:Full :VolumeTag=KL0308

   Storage Element 7:Full :VolumeTag=KL0421

   Storage Element 8:Full :VolumeTag=KL0420

   Storage Element 9:Full :VolumeTag=KL0442

   Storage Element 10:Full :VolumeTag=KL0398

   Storage Element 11:Full :VolumeTag=KL0309

   Storage Element 12:Full :VolumeTag=KL0400

   Storage Element 13:Full :VolumeTag=KL0318

   Storage Element 14:Full :VolumeTag=000108

   Storage Element 15:Full :VolumeTag=KL0389

   Storage Element 16:Full :VolumeTag=000102

   Storage Element 17:Full :VolumeTag=KL0410

   Storage Element 18:Full :VolumeTag=KL0317

   Storage Element 19:Full :VolumeTag=KL0439

   Storage Element 20:Full :VolumeTag=KL0369

   Storage Element 21:Empty:VolumeTag=

   Storage Element 22:Full :VolumeTag=KL0328

   Storage Element 23 IMPORT/EXPORT:Empty:VolumeTag=



 [r...@monk bacula]# mtx -f /dev/sg3 unload /dev/sg3:1 2

 Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense:
 Long Report=yes

 mtx: Request Sense: Valid Residual=no

 mtx: Request Sense: Error Code=70 (Current)

 mtx: Request Sense: Sense Key=Hardware Error

 mtx: Request Sense: FileMark=no

 mtx: Request Sense: EOM=no

 mtx: Request Sense: ILI=no

 mtx: Request Sense: Additional Sense Code = 53

 mtx: Request Sense: Additional Sense Qualifier = 00

 mtx: Request Sense: BPV=no

 mtx: Request Sense: Error in CDB=no

 mtx: Request Sense: SKSV=no

 MOVE MEDIUM from Element Address 256 to 4097 Failed



 [r...@monk bacula]# mtx -f /dev/sg3 unload 2

 Unloading Data Transfer Element into Storage Element 2...mtx: Request Sense:
 Long Report=yes

 mtx: Request Sense: Valid Residual=no

 mtx: Request Sense: Error Code=70 (Current)

 mtx: Request Sense: Sense Key=Hardware Error

 mtx: Request Sense: FileMark=no

 mtx: Request Sense: EOM=no

 mtx: Request Sense: ILI=no

 mtx: Request Sense: Additional Sense Code = 53

 mtx: Request Sense: Additional Sense Qualifier = 00

 mtx: Request Sense: BPV=no

 mtx: Request Sense: Error in CDB=no

 mtx: Request Sense: SKSV=no

 MOVE MEDIUM from Element Address 256 to 4097 Failed


BTW, by reading your other email, you did not have the problem I
thought. Answered too soon. Sorry.

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula does not do backups

2010-06-08 Thread mst

John,

I believe it might have been caused by faulty RAID - one of HDD was dead but I 
replaced it and morror had rebuiled. 
Crap, you are right John, Raid has reached its capacity. 

I think there is still some available space

/dev/sda3766799660 488891384 238957080  68% /
/dev/sda1   101086 22964 72903  24% /boot
none   1037200 0   1037200   0% /dev/shm

MST

+--
|This was sent by adam.gr...@comarch.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula does not do backups

2010-06-08 Thread mst

there is a tool like bscan meybe I can use it ? 

+--
|This was sent by adam.gr...@comarch.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula does not do backups

2010-06-08 Thread John Drescher
On Tue, Jun 8, 2010 at 9:22 PM, mst bacula-fo...@backupcentral.com wrote:

 there is a tool like bscan meybe I can use it ? 

bscan is for pulling missing database records in the catalog from
volumes. Not for making volumes that have Error status usable again.
So that will not help. Also I do not believe replacing a disk on a
faulty raid will cause this. And you are not out of space on any of
the partitions of /dev/sda if that is your raid. I assume you have
some type of hardware raid?

John

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users