| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #
- # Default Bacula Storage Daemon Configuration file
- #
- # For Bacula release 5.2.5 (26 January 2012) -- ubuntu 12.04
- #
- # You may need to change the name of your tape drive
- # on the "Archive Device" directive in the Device
- # resource. If you change the Name and/or the
- # "Media Type" in the Device resource, please ensure
- # that dird.conf has corresponding changes.
- #
- Storage { # definition of myself
- Name = lto-sd
- SDPort = 9103 # Director's port
- WorkingDirectory = "/var/lib/bacula"
- Pid Directory = "/var/run/bacula"
- Maximum Concurrent Jobs = 20
- #SDAddress = 192.168.5.2
- SDAddress = 10.0.21.4
- }
- #
- # List Directors who are permitted to contact Storage daemon
- #
- Director {
- Name = lto-director
- Password = "YJZtoICDQycm3inl-RmiNpFEaT-M_yCpg"
- }
- #
- # Restricted Director, used by tray-monitor to get the
- # status of the storage daemon
- #
- #Director {
- # Name = lto-mon
- # Password = "YJZtoICDQycm3inl-RmiNpFEaT-M_yCpg"
- # Monitor = yes
- #}
- #
- # Note, for a list of additional Device templates please
- # see the directory <bacula-source>/examples/devices
- # Or follow the following link:
- # http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/examples/devices/
- #
- #
- # Devices supported by this Storage daemon
- # To connect, the Director's bacula-dir.conf must have the
- # same Name and MediaType.
- #
- Device {
- Name = FileStorage
- Media Type = File
- Archive Device = /storage/bacula/backups/
- LabelMedia = yes; # lets Bacula label unlabeled media
- Random Access = Yes;
- AutomaticMount = yes; # when device opened, read it
- RemovableMedia = no;
- AlwaysOpen = no;
- }
- #
- # A Linux or Solaris LTO-4 tape drive
- #
- Device {
- Name = TapeStorage
- Media Type = LTO5
- Archive Device = /dev/nst0 # no auto reqind after writing
- #Archive Device = /dev/st0 # auto revind after finished writing
- LabelMedia = yes; # lets Bacula label unlabeled media
- AutomaticMount = yes; # when device opened, read it
- AlwaysOpen = yes;
- RemovableMedia = yes;
- RandomAccess = no;
- Maximum File Size = 100GB
- # Changer Command = "/etc/bacula/scripts/mtx-changer %c %o %S %a %d"
- # Changer Command = "/bin/mt -f /dev/st0 offline"
- # Changer Device = /dev/sg0
- # AutoChanger = yes
- # Enable the Alert command only if you have the mtx package loaded
- # Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
- # If you have smartctl, enable this, it has more info than tapeinfo
- Alert Command = "sh -c 'smartctl -H -l error %c'"
- }
- #
- # Send all messages to the Director,
- # mount messages also are sent to the email address
- #
- Messages {
- Name = Standard
- director = lto-dir = all
- }
|