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


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v15 v16  
    205205}}}
    206206'''Add Client Resource'''
     207
    207208A Client resource configures the Director with the information it needs to connect to the Client Host. This includes the name, address, and password of the Client’s File Daemon.
    208209
     
    220221}
    221222}}}
     223
     224'''Create a backup job:'''
     225
     226A Backup job, which must have a unique name, defines the details of which Client and which data should be backed up.
     227
     228
     229Next, paste this backup job into the file,
     230{{{
     231Job {
     232  Name = "BackupClientHost"
     233  JobDefs = "DefaultJob"
     234  Client = ClientHost-fd
     235  Pool = RemoteFile
     236  FileSet="Home and Etc"
     237}
     238}}}
     239This creates a backup job called '''“!BackupClientHost”''', which will back up the '''home and etc directories''' of the Client Host, as defined in the '''“Home and Etc”''' !FileSet. It will use the settings specified in the '''“!DefaultJob”''' !JobDefs and '''“!RemoteFile”''' Pool resources, which are both defined in the main '''bacula-dir.conf''' file. By default, jobs that specify '''!JobDefs = "!DefaultJob"''' will run '''weekly.'''
     240
     241Save and exit when you are done.