CentOS 7
Sponsored Link

Bacula : クライアント設定2015/07/21

 
バックアップ対象クライアントで稼働させる File デーモンの設定です。
例として、ここでは以下のような環境で構築しています。
+----------------------+          |          +----------------------+
| [   Bacula Server  ] |10.0.0.30 | 10.0.0.51| [   Bacula Client  ] |
|    Bacula Director   +----------+----------+    (Backup Target)   |
|    Bacula Storage    |                     |  Bacula File Daemon  |
|       Maria DB       |                     |                      |
+----------------------+                     +----------------------+

[1] Bacula クライアントに File コンポーネントをインストールします。
[root@node01 ~]#
yum -y install bacula-client bacula-console
[2] Bacula File の設定です。
[root@node01 ~]#
vi /etc/bacula/bacula-fd.conf
Director {
  Name = bacula-dir
 
# 15行目:Directorデーモン接続用パスワードを指定

  Password = "
password
"
}
# 22-26行目:コメントにする

#
Director {
#
Name = bacula-mon
#
Password = "@@MON_FD_PASSWORD@@"
#
Monitor = yes
#
}
[root@node01 ~]#
vi /etc/bacula/bconsole.conf
Director {
  Name = bacula-dir
  DIRport = 9101
 
# Directorデーモンのホスト名またはIPアドレス

  address =
dlp.srv.world

 
# Directorデーモン接続パスワードを指定

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

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

関連コンテンツ