Scientific Linux 6
Sponsored Link

Bacula - Configure Bacula Client ( Backup Target )2011/05/15

 
Configure File Daemon that is run on Bacula Client ( Backup Target ).
This example shows to configure on the environment like follows.
(1)  director.srv.world  [10.0.0.60]   Bacula Management Server  -  Director, Storage, Database Daemon
(2)  file01.srv.world     [10.0.0.61]   Bacula Client -  File Daemon  ( Backup Target )
[1] Install File component on Bacula Client.
[root@file01 ~]#
yum -y install bacula-client bacula-console
[2] Configure Bacula File
[root@file01 ~]#
vi /etc/bacula/bacula-fd.conf
Director {
  Name = bacula-dir
 
# line 15: specify password to connect to Director Daemon

  Password = "
password
"
}
# line 22-26: delete them

Director {
  Name = bacula-mon
  Password = "@@MON_FD_PASSWORD@@"
  Monitor = no
}
[root@file01 ~]#
/etc/rc.d/init.d/bacula-fd start

Starting bacula-fd: [ OK ]
[root@file01 ~]#
chkconfig bacula-fd on
[3] Configure Bacula bconsole
[root@file01 ~]#
vi /etc/bacula/bconsole.conf
Director {
  Name = bacula-dir
  DIRport = 9101
 
# Director Daemon's hostname or IP address

  address =
director.srv.world

 
# specify password to connect to Director Daemon

  Password = "
password
"
}
Matched Content