bacula-fd.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Default Bacula File Daemon Configuration file
  2. #
  3. # For Bacula release 11.0.1 (05 February 2020) -- redhat Beta
  4. #
  5. # There is not much to change here except perhaps the
  6. # File daemon Name to
  7. #
  8. #
  9. # Copyright (C) 2000-2020 Kern Sibbald
  10. # License: BSD 2-Clause; see file LICENSE-FOSS
  11. #
  12. #
  13. # List Directors who are permitted to contact this File daemon
  14. #
  15. Director {
  16. Name = bacula-dir
  17. Password = "000000000000000000000000000000000"
  18. # TLSPSKEnable = yes
  19. # TLS configuration directives
  20. TLSEnable = no
  21. TLSRequire = no
  22. TLSVerifyPeer = no
  23. # TLS CA Certificate File = /opt/bacula/ssl/certs/root_cert.pem
  24. # TLS Certificate = /opt/bacula/ssl/certs/client1_cert.pem
  25. # TLS Key = /opt/bacula/ssl/keys/client1_key.pem
  26. }
  27. FileDaemon {
  28. Name = bacula.space.swri.edu
  29. FDPort = 9102
  30. FDAddress = 0.0.0.0
  31. WorkingDirectory = /var/spool/bacula
  32. Pid Directory = /var/run
  33. Maximum Concurrent Jobs = 20
  34. Plugin Directory = /usr/lib64/bacula
  35. }
  36. # Send all messages except skipped files back to Director
  37. Messages {
  38. Name = Standard
  39. director = bacula-dir = all, !skipped, !restored, !saved
  40. }