Hello everyone,

Reviewing the configuration of my director, I have seen that we have a
backup job and a restore job defined for each client. Is it necessary to
have the restore job configured? I did tests, eliminating the restore job
from the servers on bacula-dir.conf and after restart bacula services  I
connected to the web interface and bconsole to restore files from these
clients and I had no problems restoring data.

example of my client  configuration:

Before:
======

Client {
  Name = webphp01-bis-uat
  Address = 10.210.120.111
  FDPort = 9102
  Catalog = MyCatalog
  Password = "Njdh6AW9odE3Sjdfj2940KMsqDdw3W"          # password for
FileDaemon
  File Retention = 365 days            # 60 days
  Job Retention = 12 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

Job {
   Name = "webphp01-bis-uat"
   Enabled = yes
   Type = Backup
   Level = Incremental
   Client = webphp01-bis-uat
   FileSet = "webphp01-bis-uat_Fileset"
   Schedule = "WeeklyCycle"
   Storage = Cloud
   Messages = Standard
   Pool = Default
}

FileSet {
  Name = "webphp01-bis-uat_Fileset"
  Include {
     Options {
        signature=SHA1
        compression=GZIP
     }
     File = "/etc"
     File = "/usr"
     File = "/home"
     File = "/var"


  }
}

Job {
   Name = "webphp01-bis-uat_Restore"
   Type = Restore
   Client = webphp01-bis-uat
   Storage = Cloud
   FileSet= "webphp01-bis-uat_Fileset"
   Pool = Default
   Messages = Standard
   Where = "/home/restore"
}

After:
====


Client {
  Name = webphp01-bis-uat
  Address = 10.210.120.111
  FDPort = 9102
  Catalog = MyCatalog
  Password = "Njdh6AW9odE3Sjdfj2940KMsqDdw3W"          # password for
FileDaemon
  File Retention = 365 days            # 60 days
  Job Retention = 12 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

Job {
   Name = "webphp01-bis-uat"
   Enabled = yes
   Type = Backup
   Level = Incremental
   Client = webphp01-bis-uat
   FileSet = "webphp01-bis-uat_Fileset"
   Schedule = "WeeklyCycle"
   Storage = Cloud
   Messages = Standard
   Pool = Default
}

FileSet {
  Name = "webphp01-bis-uat_Fileset"
  Include {
     Options {
        signature=SHA1
        compression=GZIP
     }
     File = "/etc"
     File = "/usr"
     File = "/home"
     File = "/var"


  }
}

A cordial greeting
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to