Changes between Version 18 and Version 19 of Csle2022/Agenda/bacula


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v18 v19  
    209209}}}
    210210
    211 
    212 
    213211== Configure Storage Daemon Connection ==
    214212In 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.
     
    227225}}}
    228226This 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.
     227== Verify Storage Daemon Configuration ==
     228Let’s verify that there are no syntax errors in your Storage Daemon configuration file:
     229{{{
     230sudo bacula-sd -tc /etc/bacula/bacula-sd.conf
     231}}}
     232If there are no error messages, your '''bacula-sd.conf''' file has no syntax errors.
     233== Restart Bacula Director and Storage Daemon ==
     234To put the configuration changes that you made into effect, restart Bacula Director and Storage Daemon with these commands:
     235{{{
     236sudo service bacula-director restart
     237sudo service bacula-sd restart
     238}}}
     239
    229240== Add !RemoteFile Pool ==
    230241We want to add an additional Pool to our Bacula Director configuration, which we’ll use to configure our remote backup jobs.