Changes between Version 18 and Version 19 of Csle2022/Agenda/bacula
- Timestamp:
- Nov 12, 2022, 12:40:23 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Csle2022/Agenda/bacula
v18 v19 209 209 }}} 210 210 211 212 213 211 == Configure Storage Daemon Connection == 214 212 In 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. … … 227 225 }}} 228 226 This 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 == 228 Let’s verify that there are no syntax errors in your Storage Daemon configuration file: 229 {{{ 230 sudo bacula-sd -tc /etc/bacula/bacula-sd.conf 231 }}} 232 If there are no error messages, your '''bacula-sd.conf''' file has no syntax errors. 233 == Restart Bacula Director and Storage Daemon == 234 To put the configuration changes that you made into effect, restart Bacula Director and Storage Daemon with these commands: 235 {{{ 236 sudo service bacula-director restart 237 sudo service bacula-sd restart 238 }}} 239 229 240 == Add !RemoteFile Pool == 230 241 We want to add an additional Pool to our Bacula Director configuration, which we’ll use to configure our remote backup jobs.