bacula-sd.conf: Storage { Name = backup-sd SDPort = 9103 # Director's port WorkingDirectory = "/var/spool/bacula" Pid Directory = "/var/run" Maximum Concurrent Jobs = 20 TLS Enable = yes TLS Require = yes TLS Verify Peer = yes TLS CA Certificate File = /etc/bacula/crt/ca.crt TLS Certificate = /etc/bacula/crt/backup.crt TLS Key = /etc/bacula/crt/backup.key } Director { Name = backup-dir Password = "OBSCURED" TLS Enable = yes TLS Require = yes TLS Verify Peer = yes TLS Allowed CN = "backup" TLS CA Certificate File = /etc/bacula/crt/ca.crt TLS Certificate = /etc/bacula/crt/backup.crt TLS Key = /etc/bacula/crt/backup.key } Device { Name = backup-disk Media Type = File Archive Device = /backup/bacula_tapes/ Device Type = File LabelMedia = yes; Random Access = Yes; AutomaticMount = yes; RemovableMedia = no; AlwaysOpen = no; } -------------------------------- bacula-dir.conf: Pool { Name = Default Pool Type = Backup Recycle = yes AutoPrune = yes Storage = backup-sd Volume Retention = 6 months Label Format = "FSL_Backup_Data_" Maximum Volumes = 33500 #possibly up to 33529? Maximum Volume Bytes = 2147483648 # 2GB NextPool = Default } # Definition of file storage device Storage { Name = backup-sd # Do not use "localhost" here Address = backup SDPort = 9103 Password = "OBSCURED" Device = backup-disk Media Type = File Maximum Concurrent Jobs = 10 TLS Enable = yes TLS Require = yes TLS CA Certificate File = /etc/bacula/crt/ca.crt TLS Certificate = /etc/bacula/crt/backup.crt TLS Key = /etc/bacula/crt/backup.key } Job { Name = lloydDesktopJob JobDefs = "General Server Defs" Client = umatilla-fd FileSet = "umatillaset" Schedule = "umatillasched" } Client { Name = umatilla-fd Address = umatilla FDPort = 9102 Catalog = MyCatalog Password = "OBSCURED" File Retention = 6 months Job Retention = 6 months AutoPrune = yes TLS Enable = yes TLS Require = yes TLS CA Certificate File = /etc/bacula/crt/ca.crt TLS Certificate = /etc/bacula/crt/backup.crt TLS Key = /etc/bacula/crt/backup.key } FileSet { Name = "umatillaset" Include { Options { signature = SHA1 compression = gzip } File = /etc File = /home File = /mnt/worksoftware } Exclude { File = /home/lbrown/Music File = /home/lbrown/Pictures } } Schedule { Name = "umatillasched" Run = Level=Full on 10 at 17:00 Run = Level=Incremental on 1-9,11-31 at 17:00 }