Hi Phil,

Here is a client config:-

-----------------------------------------------

# Bacula File Daemon Configuration file for venus
#
#  For Bacula release 9.0.2
#
#
# List Directors who are permitted to contact this File daemon
#
Director {
  Name = venus-dir
  Password = "ccvI4UIT5KmvTR8rjeGktWW9EttOqKPkO2llymAEu4xs3"
}

#
# Restricted Director, used by tray-monitor to get the
#   status of the file daemon
#
Director {
  Name = venus-mon
  Password = "V7zzKKcUF4oTNCYxrYRGsczYPnx2KvehdY3yjKxKI0WA"
  Monitor = yes
}

#
# "Global" File daemon configuration specifications
#
FileDaemon {                          # this is me
  Name = venus-fd
  FDport = 9102                  # where we listen for the director
  WorkingDirectory = /opt/bacula/working
  Pid Directory = /opt/bacula/working
  Maximum Concurrent Jobs = 20
}

# Send all messages except skipped files back to Director
Messages {
  Name = Standard
  director = venus-dir = all, !skipped
}

-----------------------------------------------

Here is the director config file:-


-----------------------------------------------

# Bacula Director Configuration file for venus
#
#  For Bacula release 9.0.2
#
#

Director {                            # define myself
  Name = venus-dir
  DIRport = 9101                # where we listen for UA connections
  QueryFile = /opt/bacula/etc/query.sql
  WorkingDirectory = /opt/bacula/working
  PidDirectory = /opt/bacula/working
  Maximum Concurrent Jobs = 1
Password = "BzWJmj8LksOSezl5cH2kHES0eTSSZ4I9kcXCMkkEOgeD" # Console password
  Messages = Daemon
}

#
# 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=venus-fd
  FileSet="venus Full Set"
  Storage = "FileStorage"
  Pool = Default
  Messages = Standard
  Where = /tmp/bacula-restores
}

#
# Definition of file storage device
#
Storage {
  Name = FileStorage
Address = venus.harley.pimb.org # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "+NL9puHa4nh4Fy0QVw6+tWKqBb8pWRoSLpbHL2bvlTa4"
  Device = FileStorage
  Media Type = File
}

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

#
# Default pool definition
#
Pool {
  Name = Default
  Pool Type = Backup
Recycle = yes # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 14 days          # two weeks
  Maximum Volume Jobs = 1;
  Label Format = "Default_Backup";
}

#
# Restricted console used by tray-monitor to get the status of the director
#
Console {
  Name = venus-mon
  Password = "ylZCnrUAk8wMZz+kmF1K5QmFmc7LxYIPCdJ0cApBK+cN"
  CommandACL = status, .status
}

#
# Include files section
#

#
# Client definition files
#
@/opt/bacula/etc/conf.d/sun.conf
@/opt/bacula/etc/conf.d/venus.conf
@/opt/bacula/etc/conf.d/mercury.conf
@/opt/bacula/etc/conf.d/titan.conf
@/opt/bacula/etc/conf.d/backupcatalog.conf

#
# Schedules definition file
#
@/opt/bacula/etc/conf.d/schedule.conf

#
# Messages definition file
#
@/opt/bacula/etc/conf.d/messages.conf

-----------------------------------------------

Not sure if you also need the include files for the client shown but in case yes then here it is:-

-----------------------------------------------

#Configuration info for venus

#
# Job info for venus
#
Job {
  Name = "Client venus"
  Type = Backup
  Client = venus-fd
  FileSet = "venus Full Set"
  Schedule = "WeeklyCycle"
  Storage = "FileStorage"
  Messages = Standard
  Pool = Default
  Full Backup Pool = venus-Full-Pool
  Incremental Backup Pool = venus-Inc-Pool
  Differential Backup Pool = venus-Diff-Pool
  Write Bootstrap = "/opt/bacula/working/Client_venus.bsr"
  Priority = 10
}

#
# List of files to be backed up for venus
#
FileSet {
  Name = "venus Full Set"
  Include {
    Options {
      signature = MD5
    }
    File = /home
    File = /mnt/File_Server
  }
#
# If you backup the root directory, the following excluded
#   files can be useful
#
  Exclude {
    File = /proc
    File = /tmp
    File = /.journal
    File = /.fsck
    File = /mnt/File_Server/isos
    File = /home/ahb/.local/share/Trash
  }
}

#
# Client info for venus
#
Client {
  Name = venus-fd
  Address = venus.harley.pimb.org
  FDPort = 9102
  Catalog = MyCatalog
Password = "ccvI4UIT5KmvTR8rjeGktWW9EttOqKPkO2llymAEu4xs3" # password for FileDaemon on venus
  File Retention = 60 days            # 60 days
  Job Retention = 5 months            # five months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

#
# Pool definitions for venus
#
Pool {
  Name = venus-Full-Pool
  Pool Type = Backup
  Recycle = yes                # automatically recycle Volumes
  AutoPrune = yes            # Prune expired Volumes
  Volume Retention = 2 months
  Maximum Volume Jobs = 1
  Action On Purge = Truncate
  Label Format = "${Client}-${Level}-${NumVols+:p/2/0/r}"
  Maximum Volumes = 8
}

Pool {
  Name = venus-Diff-Pool
  Pool Type = Backup
  Recycle = yes                         # automatically recycle Volumes
  AutoPrune = yes                       # Prune expired Volumes
  Volume Retention = 40 days
  Maximum Volume Jobs = 1
  Action On Purge = Truncate
  Label Format = "${Client}-${Level}-${NumVols+:p/2/0/r}"
  Maximum Volumes = 10
}

Pool {
  Name = venus-Inc-Pool
  Pool Type = Backup
  Recycle = yes                         # automatically recycle Volumes
  AutoPrune = yes                       # Prune expired Volumes
  Volume Retention = 15 days
  Maximum Volume Jobs = 6
  Action On Purge = Truncate
  Label Format = "${Client}-${Level}-${NumVols+:p/2/0/r}"
  Maximum Volumes = 6
}

-----------------------------------------------

None of these have been changed between 9.0.2 and 9.0.3 but it could be that I have set something up that worked OK in previous versions but gives problems with 9.0.3.

Thanks,

Adolf

Sent from my Desktop Computer

On 14/08/17 21:04, Phil Stracchino wrote:
On 08/14/17 14:41, Adolf Belka wrote:
Any thoughts on what is causing this.

My Bacula setup is running with a Hard Disk for storage. Nothing was
changed in any of the conf files for this update.

If any more information or debug data is required, let me know and I
will collect it.

Adolf,
Can you show us a sample Client config (both client and director side)?





------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to