Changes between Version 8 and Version 9 of Csle2022/Agenda/bacula
- Timestamp:
- Nov 7, 2022, 11:03:44 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Csle2022/Agenda/bacula
v8 v9 57 57 Before configuring the client File Daemon, you will want to look up the following information, which will be used throughout the remainder of this practical: 58 58 59 '''Client hostname:''' Our example will use “ClientHost”[[BR]]59 '''Client hostname:''' Our example will use '''“!ClientHost”'''[[BR]] 60 60 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]] 62 62 63 '''Bacula Server hostname:''' Our example will use “BackupServer”63 '''Bacula Server hostname:''' Our example will use '''“!BackupServer”''' 64 64 65 65 '''Note:-'''Your actual setup will vary from the example, so be sure to make substitutions where appropriate. … … 82 82 You 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. 83 83 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):'''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):''' 85 85 {{{ 86 86 FileDaemon { # this is me … … 91 91 Maximum Concurrent Jobs = 20 92 92 FDAddress = client_private_FQDN / Private IP 93 } 94 }}} 95 96 We 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 {{{ 98 Messages { 99 Name = Standard 100 director = BackupServer-dir = all, !skipped, !restored 93 101 } 94 102 }}}