Changes between Version 8 and Version 9 of Csle2022/Agenda/bacula


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v8 v9  
    5757Before configuring the client File Daemon, you will want to look up the following information, which will be used throughout the remainder of this practical:
    5858
    59     '''Client hostname:''' Our example will use “ClientHost”[[BR]]
     59    '''Client hostname:''' Our example will use '''“!ClientHost”'''[[BR]]
    6060
    61     '''Client Private FQDN:''' We’ll refer to this as “client_private_FQDN”, which may look like clienthost.private.example.com or private IP address[[BR]]
     61    '''Client Private FQDN:''' We’ll refer to this as “client_private_FQDN”, which may look like clienthost.private.example.com or '''private IP address'''[[BR]]
    6262
    63     '''Bacula Server hostname:''' Our example will use “BackupServer”
     63    '''Bacula Server hostname:''' Our example will use '''“!BackupServer”'''
    6464
    6565'''Note:-'''Your actual setup will vary from the example, so be sure to make substitutions where appropriate.
     
    8282You also need to copy the '''Password,''' which is the automatically generated password used for connections to File Daemon, and save it for future reference. This will be used in the '''Backup Server’s Director configuration''', which we will set in an upcoming step, to connect to your Client’s File Daemon.
    8383
    84 Next, we need to adjust one parameter in the '''FileDaemon''' resource. We will change the '''FDAddress''' parameter to match the '''private FQDN of our client machine'''. The Name parameter should already be populated correctly with the client file daemon name. The resource should looks something like this '''(substitute the actual FQDN or IP address):'''
     84Next, we need to adjust one parameter in the '''!FileDaemon''' resource. We will change the '''FDAddress''' parameter to match the '''private FQDN of our client machine'''. The Name parameter should already be populated correctly with the client file daemon name. The resource should looks something like this '''(substitute the actual FQDN or IP address):'''
    8585{{{
    8686FileDaemon {                          # this is me
     
    9191  Maximum Concurrent Jobs = 20
    9292  FDAddress = client_private_FQDN / Private IP
     93}
     94}}}
     95
     96We also need to configure this daemon to pass its log messages to the Backup Server. Find the Messages resource and change the '''director parameter''' to match your backup server’s hostname with a '''“-dir”''' suffix. It should look something like this:
     97{{{
     98Messages {
     99  Name = Standard
     100  director =  BackupServer-dir = all, !skipped, !restored
    93101}
    94102}}}