Changes between Version 16 and Version 17 of Csle2022/Agenda/bacula


Ignore:
Timestamp:
Nov 12, 2022, 12:21:51 AM (2 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v16 v17  
    173173
    174174You can create multiple !FileSets if you wish. Save and exit, when you are finished.
     175
     176== Configure Storage Daemon Connection ==
     177In the Bacula Director configuration file, the Storage resource defines the Storage Daemon that the Director should connect to. We’ll configure the actual Storage Daemon in just a moment.
     178
     179Find the Storage resource, and replace the value of Address, localhost, with the private FQDN (or private IP address) of your backup server. It should look like this (substitute the highlighted word):
     180{{{
     181Storage {
     182  Name = File
     183# Do not use "localhost" here
     184  Address = backup_server_private_FQDN / private IP     # N.B. Use a fully qualified name here
     185  SDPort = 9103
     186  Password = "ITXAsuVLi1LZaSfihQ6Q6yUCYMUssdmu_"
     187  Device = FileStorage
     188  Media Type = File
     189}
     190}}}
     191This is necessary because we are going to configure the Storage Daemon to listen on the private network interface, so remote clients can connect to it.
    175192== Add !RemoteFile Pool ==
    176193We want to add an additional Pool to our Bacula Director configuration, which we’ll use to configure our remote backup jobs.