Changes between Version 13 and Version 14 of Csle2022/Agenda/bacula


Ignore:
Timestamp:
Nov 7, 2022, 11:44:54 AM (2 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v13 v14  
    173173
    174174You can create multiple !FileSets if you wish. Save and exit, when you are finished.
     175== Add !RemoteFile Pool ==
     176We want to add an additional Pool to our Bacula Director configuration, which we’ll use to configure our remote backup jobs.
     177{{{
     178sudo vi /etc/bacula/bacula-dir.conf
     179}}}
     180Add the following Pool resource:
     181{{{
     182Pool {
     183  Name = RemoteFile
     184  Pool Type = Backup
     185  Label Format = Remote-
     186  Recycle = yes                       # Bacula can automatically recycle Volumes
     187  AutoPrune = yes                     # Prune expired volumes
     188  Volume Retention = 365 days         # one year
     189    Maximum Volume Bytes = 50G          # Limit Volume size to something reasonable
     190  Maximum Volumes = 100               # Limit number of Volumes in Pool
     191}
     192}}}
     193Save and exit. This defines a “!RemoteFile” pool, which we will use by the backup job that we’ll create later. Feel free to change any of the parameters to meet your own needs.
    175194
     195We don’t need to restart Bacula Director just yet, but let’s verify that its configuration doesn’t have any errors in it:
     196{{{
     197sudo bacula-dir -tc /etc/bacula/bacula-dir.conf
     198}}}
    176199Now we’re ready to create backup job that will use our new !FileSet.