CentOS 7
Sponsored Link

Bacula : Configure Client2015/07/21

 
Configure Bacula Backup Target Client.
This example is based on the environment like follows.
+----------------------+          |          +----------------------+
| [   Bacula Server  ] |10.0.0.30 | 10.0.0.51| [   Bacula Client  ] |
|    Bacula Director   +----------+----------+    (Backup Target)   |
|    Bacula Storage    |                     |  Bacula File Daemon  |
|       Maria DB       |                     |                      |
+----------------------+                     +----------------------+

[1] Install File componet on Bacula Client.
[root@node01 ~]#
yum -y install bacula-client bacula-console
[2] Configure Bacula File.
[root@node01 ~]#
vi /etc/bacula/bacula-fd.conf
Director {
  Name = bacula-dir
 
# line 15: specify Director daemon's password

  Password = "
password
"
}
# line 22-26: comment out

#
Director {
#
Name = bacula-mon
#
Password = "@@MON_FD_PASSWORD@@"
#
Monitor = yes
#
}
[root@node01 ~]#
vi /etc/bacula/bconsole.conf
Director {
  Name = bacula-dir
  DIRport = 9101
 
# Director daemon's Hostname or IP address

  address =
dlp.srv.world

 
# specify Director daemon's password

  Password = "
password
"
}
[root@node01 ~]#
systemctl start bacula-fd

[root@node01 ~]#
systemctl enable bacula-fd

Matched Content