Advertisement
Guest User

fd.conf

a guest
Apr 28th, 2015
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.15 KB | None | 0 0
  1. # Default  Bacula File Daemon Configuration file
  2. #
  3. #  For Bacula release 5.2.10 (06/28/12) -- Windows MinGW64
  4. #
  5. # There is not much to change here except perhaps the
  6. # File daemon Name
  7. #
  8.  
  9. #
  10. # "Global" File daemon configuration specifications
  11. #
  12. FileDaemon {                            # this is me
  13.   Name = win-2avefaklcqs-fd
  14.   FDport = 9102                # where we listen for the director
  15.   WorkingDirectory = "C:\\Program Files\\Bacula\\working"
  16.   Pid Directory = "C:\\Program Files\\Bacula\\working"
  17. # Plugin Directory = "C:\\Program Files\\Bacula\\plugins"
  18.   Maximum Concurrent Jobs = 10
  19.   FDAddress = 192.168.1.1
  20. }
  21.  
  22. #
  23. # List Directors who are permitted to contact this File daemon
  24. #
  25. Director {
  26.   Name = rquid-dir
  27.   Password = "Ep0EWmizjQP6paqLGncTP9F0Tmc9NdMltKUCc6//eW4A"
  28. }
  29.  
  30. #
  31. # Restricted Director, used by tray-monitor to get the
  32. #   status of the file daemon
  33. #
  34. Director {
  35.   Name = win-2avefaklcqs-mon
  36.   Password = "iZRi/wOGzHJLdadh0mXh99z+eS0YxkaOaQLKKqQS0a8Z"
  37.   Monitor = yes
  38. }
  39.  
  40. # Send all messages except skipped files back to Director
  41. Messages {
  42.   Name = Standard
  43.   director = rquid-dir = all, !skipped, !restored
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement