Changes between Version 30 and Version 31 of Csle2022/Agenda/bacula


Ignore:
Timestamp:
Dec 1, 2022, 4:27:21 PM (3 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/bacula

    v30 v31  
    2323}}}
    2424
    25 '''Install postgresql Database'''
     25''' Set the IP addresses '''
     26
     27In case if bridging adapter setting is not working with your Virtual box, please add '''Host-Only adapter''' for both '''Backup Server''' and '''Client-Host.''' Then set the IP addresses as below.
     28
     29For the '''Backup Server'''
     30{{{
     31sudo vim /etc/netplan/00-installer-config.yaml
     32}}}
     33{{{
     34network:
     35  ethernets:
     36    enp0s3:
     37      dhcp4: true
     38    enp0s8:
     39      dhcp4: false
     40      addresses:
     41         - 192.168.56.105/24
     42  version: 2
     43}}}
     44{{{
     45sudo netplan apply
     46}}}
     47
     48For the '''Client-Host'''
     49{{{
     50sudo vim /etc/netplan/00-installer-config.yaml
     51}}}
     52{{{
     53network:
     54  ethernets:
     55    enp0s3:
     56      dhcp4: true
     57    enp0s8:
     58      dhcp4: false
     59      addresses:
     60         - 192.168.56.106/24
     61  version: 2
     62}}}
     63{{{
     64sudo netplan apply
     65}}}
     66Now check the connectivity between Server and client and it should success.
     67{{{
     68ping 192.168.56.106
     69}}}
     70
     71'''Install postgresql Database in Backup Server'''
    2672{{{
    2773sudo apt-get update -y
     
    3177}}}
    3278
    33 '''Install Bacula'''
     79'''Install Bacula in Backup Server'''
    3480{{{
    3581sudo apt-get install bacula -y
    3682}}}
    37 While installing Bacula, you will be asked to configure Postfix.Pick "No configuration" under 'General Type of Mail Configuration.
    38 
    39 If prompted for ''''Configure database for bacula-director-postgresql with dbconfig-common?'''' Enter "Yes." For ''''Password of the database's administrative user,'''set the password as 1234.
     83While installing Bacula, you will be asked to configure '''Postfix.'''Pick '''"No configuration"''' under '''General''' Type of Mail Configuration.
     84
     85If prompted for ''''Configure database for bacula-director-postgresql with dbconfig-common?'''' Enter '''"Yes."''' For ''''Password of the database's administrative user,'''set the password as '''1234.'''
    4086
    4187== Configure Bacula Director==
     
    58104}}}
    59105
     106== Now we start configuring Client Side ==
    60107== Install Bacula Client in Client Machine ==
    61108A Bacula client, i.e. a server that will be backed up, runs the '''File Daemon (FD)''' component. The File Daemon is software that provides the Bacula server (the Director, specifically) access to the data that will be backed up. We will also refer to these servers as “backup clients” or “clients”.