Advertisement
Guest User

Erro Bacula FD

a guest
Jan 22nd, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1.  
  2. #
  3. # Default Bacula File Daemon Configuration file
  4. #
  5. # For Bacula release 9.4.2 (04 February 2019) -- redhat (Core)
  6. #
  7. # There is not much to change here except perhaps the
  8. # File daemon Name to
  9. #
  10. #
  11. # Copyright (C) 2000-2015 Kern Sibbald
  12. # License: BSD 2-Clause; see file LICENSE-FOSS
  13. #
  14.  
  15. #
  16. # List Directors who are permitted to contact this File daemon
  17. #
  18. Director {
  19. Name = mydir
  20. Password = "senhadir"
  21. }
  22.  
  23. #
  24. # Restricted Director, used by tray-monitor to get the
  25. # status of the file daemon
  26. #
  27. Director {
  28. Name = CLINT1-mon
  29. Password = "pass+KGcWPr7FS"
  30. Monitor = yes
  31. }
  32.  
  33. #
  34. # "Global" File daemon configuration specifications
  35. #
  36. FileDaemon { # this is me
  37. Name = CLINT1-fd
  38. FDport = 9102 # where we listen for the director
  39. WorkingDirectory = /opt/bacula/working
  40. Pid Directory = /var/run
  41. Maximum Concurrent Jobs = 20
  42. Plugin Directory = /etc/bacula/plugins
  43. PKI Signatures = Yes # Enable Data Signing
  44. PKI Encryption = Yes # Enable Data Encryption
  45. PKI Keypair = /etc/bacula/certs/fd-cert.pem # Public and $
  46. PKI Master Key = /etc/bacula/certs/master.cert # ONLY the Public Key
  47. }
  48.  
  49. # Send all messages except skipped files back to Director
  50. Messages {
  51. Name = Standard
  52. director = CLINT1-dir = all, !skipped, !restored
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement