Bacula Allgemein: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
 
(8 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
==Komponenten==
 
==Komponenten==
*[[bacula-dir]]
+
*bacula-dir
 
Director - der Serverprozess, verantwortlich fuer die Durchfuerhrung der Backups
 
Director - der Serverprozess, verantwortlich fuer die Durchfuerhrung der Backups
 
*bacula-sd
 
*bacula-sd
Zeile 12: Zeile 12:
  
 
==Konfigurationsdateien==
 
==Konfigurationsdateien==
  /usr/local/bacula/etc/bacula-dir.conf
+
  /etc/bacula/bacula-dir.conf <-- Bacula Director
  /usr/local/bacula/etc/bacula-sd.conf
+
  /etc/bacula/bacula-sd.conf <-- Bacula Storage Deamon
  /usr/local/bacula/etc/bacula-fd.conf
+
  /etc/bacula/bacula-fd.conf <-- Bacula File Deamon
  /usr/local/bacula/etc/bconsole.conf
+
  /etc/bacula/bconsole.conf   <-- Bacula Console
  
 
==Prozesskontrolle==
 
==Prozesskontrolle==
  /etc/init.d/bacula-dir start|stop|restart
+
  service bacula-dir start|stop|restart
  /etc/init.d/bacula-sd start|stop|restart
+
  service bacula-sd start|stop|restart
  /etc/init.d/bacula-fd start|stop|restart
+
  service bacula-fd start|stop|restart
 
 
/usr/local/bacula/etc/bacula start|stop|restart
 
  
 
==bconsole==
 
==bconsole==
 
*Aufruf
 
*Aufruf
  /usr/local/bacula/etc/bconsole
+
  /etc/bacula/bconsole
 
*Status der Clients
 
*Status der Clients
 
  status client
 
  status client
Zeile 34: Zeile 32:
 
  run backup
 
  run backup
  
{{FAQ}}
+
==LINKS==
 +
*Allgemein          --> https://wiki.ubuntuusers.de/Bacula
 +
*Installation        --> https://wiki.ubuntuusers.de/Bacula/Installation
 +
*Serverkonfiguration --> https://wiki.ubuntuusers.de/Bacula/Server-Konfiguration
 +
*Clientkonfiguration --> https://wiki.ubuntuusers.de/Bacula/Client-Konfiguration
 +
*bconsole            --> https://wiki.ubuntuusers.de/Bacula/bconsole

Aktuelle Version vom 11. Juni 2015, 10:46 Uhr

Komponenten

  • bacula-dir

Director - der Serverprozess, verantwortlich fuer die Durchfuerhrung der Backups

  • bacula-sd

Storage-Daemon - Prozess, der die Speichermedien / den Zugriff auf die Speichermedien verwaltet.

  • bacula-fd

File-Daemon - Clientprozess

  • bconsole

Console-Anwendung

  • postgresql Datenbank

Achtung: laeuft die Datenbank nicht, steigt der Director kurz nach dem Starten wieder aus. Beim Starten des Directors ist dabei auf der Console keine Fehlermeldung zu sehen.

Konfigurationsdateien

/etc/bacula/bacula-dir.conf <-- Bacula Director
/etc/bacula/bacula-sd.conf  <-- Bacula Storage Deamon
/etc/bacula/bacula-fd.conf  <-- Bacula File Deamon
/etc/bacula/bconsole.conf   <-- Bacula Console

Prozesskontrolle

service bacula-dir start|stop|restart
service bacula-sd start|stop|restart
service bacula-fd start|stop|restart

bconsole

  • Aufruf
/etc/bacula/bconsole
  • Status der Clients
status client
  • Status des Directors
status dir
  • manuelles Starten eines Backups
run backup

LINKS