Am i crazy or should "mount jobid=16" cause that job to
unmount the just mounted volume and complain that I need to label.

Any method of mounting causes the jobid to sqwak about not
having a volume, and the device is unmounted.

When I use the File backend how do I select what volume to mount?

The  best I can do is cancel the job, delete the volume.  ruining the
job then asks for a label, the the label auto-mounts and the job says
to use the label cmd(again!) and unmount reports the volume is
unmounted already.
Unfortunalty that's the loop I'm in.

I'm using these instructions:
http://www.bacula.org/dev-manual/Brief_Tutorial.html
but I'm altering the config for my setup.

autolabel would be nice, if it weren't for this problem.  I turned
autolabel and every thing else off to get things working again.

I was hoping to find some one who has seen this.

The SD is running on Linux and the FD and DIR is on FreeBSD... are
there any version mismatches I should look out for?

Eventually only the DIR will be on FreeBSD.

I'm also looking to do multiple directors, one for each class of
customer, and they may need to share SDs I could not get multiple
Directors to work in the same SD.

I'll attach some config.  I don't have access to the SD at this time,
I'm using 'ssh -i "key"' inside inetd to run 'nc' on the sd server.
If there is an interest I am posting this config here.

bacula-sd   stream     tcp   nowait    root   /usr/bin/ssh -q -T -o
BatchMode=yes -i /etc/ssh/vault7-sd_dsa_key [EMAIL PROTECTED]

# note for BatchMode to work the server's key needs to be added to the
# "system's" known_hosts file, you can also use DNS(but don't quote
# me.)  ""you will need BatchMode"" so you need to copy the key.

vault7:~visi/.ssh/authorized_keys
from=mgmt8,command="nc localhost bacula-sd",<othersecureoptions> <the
dsa key>

-- 
/****************************************************************
 *   Mike Mestnik: Junior Admin          612-395-8932           *
 *      [EMAIL PROTECTED]                  VISI Inc.            *
 ****************************************************************/
 Alt address: [EMAIL PROTECTED]
#
# Default Bacula Director Configuration file
#
#  The only thing that MUST be changed is to add one or more
#   file or directory names in the Include directive of the
#   FileSet resource.
#
#  For Bacula release 1.38.5 (18 January 2006) -- freebsd 6.1-RELEASE
#
#  You might also want to change the default email address
#   from root to your address.  See the "mail" and "operator"
#   directives in the Messages resource.
#

Director {                            # define myself
  Name = mgmt8-dir
  DIRport = 9101                # where we listen for UA connections
  DirAddress = 127.0.0.1
  QueryFile = "/usr/local/share/bacula/query.sql"
  WorkingDirectory = "/var/db/bacula"
  PidDirectory = "/var/run"
  Maximum Concurrent Jobs = 30
  Password = "B/"         # Console password
#  Messages = Daemon
  Messages = Standard
}

JobDefs {
  Name = "Vault7Job"
  Type = Backup
  Level = Incremental
  Client = mgmt8-fd 
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
#  Storage = vault7-sd
  Storage = vault7-FileStorage
  Messages = Standard
  Pool = Vault7
  Priority = 10
}

JobDefs {
  Name = "VaultXJob"
  Type = Backup
  Level = Incremental
  Client = mephisto.visi.com
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
#  Storage = VaultX-sd
  Storage = vaultX-FileStorage
  Messages = Standard
  Pool = VaultX
  Priority = 10
}


#
# Define the main nightly save backup job
#   By default, this job will back up to disk in /tmp
#Job {
#  Name = "Client1"
#  JobDefs = "DefaultJob"
#  Write Bootstrap = "/var/db/bacula/Client1.bsr"
#}

#Job {
#  Name = "Client2"
#  Client = freebsd2-fd
#  JobDefs = "DefaultJob"
#  Write Bootstrap = "/var/db/bacula/Client2.bsr"
#}

# Backup this host, why not?
Job {
  Name = "mgmt8"
  JobDefs = "Vault7Job"
}

# Backup the catalog database (after the nightly save)
Job {
  Name = "BackupCatalog"
  JobDefs = "Vault7Job"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  RunBeforeJob = "/usr/local/share/bacula/make_catalog_backup bacula bacula"
  # This deletes the copy of the catalog
  RunAfterJob  = "/usr/local/share/bacula/delete_catalog_backup"
  Write Bootstrap = "/var/db/bacula/BackupCatalog.bsr"
  Priority = 11                   # run after main backup
}

#
# Standard Restore template, to be changed by Console program
#  Only one such job is needed for all Jobs/Clients/Storage ...
#
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client= mgmt8-fd                 
  FileSet="Full Set"                  
  Storage = vault7-sd
  Pool = Vault7
  Messages = Standard
  Where = /tmp/bacula-restores
}


# List of files to be backed up
FileSet {
  Name = "Full Set"
  Include {
    Options {
      signature = MD5
      compression = gzip
    }
#    
#  Put your list of files here, preceded by 'File =', one per line
#    or include an external list with:
#
#    File = <file-name
#
#  Note: / backs up everything on the root partition.
#    if you have other partitons such as /usr or /home
#    you will probably want to add them too.
#
#  By default this is defined to point to the Bacula build
#    directory to give a reasonable FileSet to backup to
#    disk storage during initial testing.
#
    File = /
    File = /opt
    File = /usr
    File = /var
#    File = /var/spool1
#    File = /var/spool2
#    File = /visina1/TestSpace1
#    File = /visina1/vol0
  }

#
# If you backup the root directory, the following two excluded
#   files can be useful
#
  Exclude {
    File = /proc
    File = /tmp
    File = /.journal
    File = /.fsck
    File = .snapshot
  }
}

#
# 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 = Full 1st sun at 23:05
  Run = Differential 2nd-5th sun at 23:05
  Run = Incremental mon-sat at 23:05
}

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

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

# Client (File Services) to backup
Client {
  Name = mgmt8-fd
  Address = mgmt8-loc
  FDPort = 9102
  Catalog = MyCatalog
  Password = "/ZQtqwz556"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 6 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

Client {
  Name = mephisto.visi.com
  Address = gmephisto.visi.com
  FDPort = 9102
  Catalog = MyCatalog
  Password = "/ZQtqwz556"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 3 months            # three months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

#
# Second Client (File Services) to backup
#  You should change Name, Address, and Password before using
#
#Client {
#  Name = freebsd2-fd                
#  Address = freebsd2
#  FDPort = 9102
#  Catalog = MyCatalog
#  Password = "/ZQtqwz5562"         # password for FileDaemon 2
#  File Retention = 30 days            # 30 days
#  Job Retention = 6 months            # six months
#  AutoPrune = yes                     # Prune expired Jobs/Files
#}


# Definition of file storage device
Storage {
  Name = vault7-sd
# Do not use "localhost" here    
  Address = mgmt8.mn2.visi.com         # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "+CDyo5r7HMSg8F5V"
  Device = vault7-FileStorage
  Media Type = vault7-File
}

Storage {
  Name = VaultX-sd
# Do not use "localhost" here    
  Address = gmephisto.visi.com         # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "###+CDyo5r7HMSg8F5V"
  Device = vaultX-FileStorage
  Media Type = vaultX-File
}



# Definition of DDS tape storage device
#Storage {
#  Name = DDS-4    
#  Do not use "localhost" here
#  Address = freebsd                # N.B. Use a fully qualified name here
#  SDPort = 9103
#  Password = "+CDyo5r7HMSg8F5V"          # password for Storage daemon
#  Device = DDS-4                      # must be same as Device in Storage 
daemon
#  Media Type = DDS-4                  # must be same as MediaType in Storage 
daemon
#  Autochanger = yes                   # enable for autochanger device
#}

# Definition of 8mm tape storage device
#Storage {
#  Name = "8mmDrive"
#  Do not use "localhost" here
#  Address = freebsd                # N.B. Use a fully qualified name here
#  SDPort = 9103
#  Password = "+CDyo5r7HMSg8F5V"
#  Device = "Exabyte 8mm"
#  MediaType = "8mm"
#}

# Definition of DVD storage device
#Storage {
#  Name = "DVD"
#  Do not use "localhost" here
#  Address = freebsd                # N.B. Use a fully qualified name here
#  SDPort = 9103
#  Password = "+CDyo5r7HMSg8F5V"
#  Device = "DVD Writer"
#  MediaType = "DVD"
#}


# Generic catalog service
Catalog {
  Name = MyCatalog
  dbname = bacula; user = bacula; password = ""
}

# Reasonable message delivery -- send most everything to email address
#  and to the console
Messages {
  Name = Standard
#
# NOTE! If you send to two email or more email addresses, you will need
#  to replace the %r in the from field (-f part) with a single valid
#  email address in both the mailcommand and the operatorcommand.
#
  mailcommand = "/usr/local/sbin/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/usr/local/sbin/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula: Intervention needed for %j\" %r"
  mail = [EMAIL PROTECTED] = all, !skipped            
  operator = [EMAIL PROTECTED] = mount
  console = all, !skipped, !saved
#
# WARNING! the following will create a file that you must cycle from
#          time to time as it will grow indefinitely. However, it will
#          also keep all your messages if they scroll off the console.
#
  append = "/var/db/bacula/log" = all, !skipped
}


#
# Message delivery for daemon messages (no job).
Messages {
  Name = Daemon
  mailcommand = "/usr/local/sbin/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula daemon message\" %r"
  mail = [EMAIL PROTECTED] = all, !skipped            
  console = all, !skipped, !saved
  append = "/var/db/bacula/log" = all, !skipped
}



    
# Default pool definition
Pool {
  Name = Vault7
#  Use Volume Once = yes
#  Maximum Volume Jobs = 1
#  Maximum Volume Bytes = 2g
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
#  Volume Retention = 365 days         # one year
  Accept Any Volume = yes             # write on any volume in the pool
#  Label Format = "bacula_${Pool}-${Dir}:${Client}_${JobName}.${JobId}"
#  Label Format = "bacula_mgmt8-"
#  Maximum Volumes = 365               # 1 / day
}

Pool {
  Name = VaultX
  Use Volume Once = yes
  Maximum Volume Jobs = 1
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 1 months         # one month
  Accept Any Volume = yes             # write on any volume in the pool
#  Label Format = "bacula_${Pool}-${Dir}:${Client}_${JobName}.${JobId}"
#  Label Format = "bacula_mgmt8-"
  Maximum Volume Bytes = 6g
  Maximum Volumes = 90                # 3 / day
}

#
# Restricted console used by tray-monitor to get the status of the director
#
Console {
  Name = fr-mon
  Password = "###"
  CommandACL = status, .status
}
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to