Advertisement
CJM51213

Untitled

Aug 22nd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. #
  2. # Default Bacula Storage Daemon Configuration file
  3. #
  4. # For Bacula release 7.4.1 (02 May 2016) -- redhat Three)
  5. #
  6. # You may need to change the name of your tape drive
  7. # on the "Archive Device" directive in the Device
  8. # resource. If you change the Name and/or the
  9. # "Media Type" in the Device resource, please ensure
  10. # that dird.conf has corresponding changes.
  11. #
  12. #
  13. # Copyright (C) 2000-2015 Kern Sibbald
  14. # License: BSD 2-Clause; see file LICENSE-FOSS
  15. #
  16.  
  17. Storage {
  18. Name = bacula-sd.Trax
  19. SDPort = 9103
  20. WorkingDirectory = "/var/spool/bacula"
  21. Pid Directory = "/var/run"
  22. Maximum Concurrent Jobs = 20
  23. }
  24.  
  25. #
  26. # List Directors who are permitted to contact Storage daemon
  27. #
  28. Director {
  29. Name = bacula-dir.TCLC
  30. Password = "BaculaBackup"
  31. }
  32.  
  33. Director {
  34. Name = bacula-mon.Trax
  35. Password = "BaculaBackup"
  36. Monitor = yes
  37. }
  38.  
  39. #
  40. # Note, for a list of additional Device templates please
  41. # see the directory <bacula-source>/examples/devices
  42. # Or follow the following link:
  43. # http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/examples/devices/
  44. #
  45.  
  46. #
  47. # Define a Virtual autochanger
  48. #
  49. Autochanger {
  50. Name = "File Changer"
  51. Device = NAS0-D1, NAS0-D2, NAS1-D1, NAS1-D2
  52. Changer Command = ""
  53. Changer Device = /dev/null
  54. }
  55.  
  56. Device {
  57. Name = NAS0-D1
  58. Media Type = File
  59. Archive Device = /net/nas0/d1
  60. LabelMedia = yes;
  61. Random Access = Yes;
  62. AutomaticMount = yes;
  63. RemovableMedia = no;
  64. AlwaysOpen = no;
  65. Maximum Concurrent Jobs = 5
  66. }
  67.  
  68. Device {
  69. Name = NAS0-D2
  70. Media Type = File
  71. Archive Device = /net/nas0/d2
  72. LabelMedia = yes;
  73. Random Access = Yes;
  74. AutomaticMount = yes;
  75. RemovableMedia = no;
  76. AlwaysOpen = no;
  77. Maximum Concurrent Jobs = 5
  78. }
  79.  
  80. Device {
  81. Name = NAS1-D1
  82. Media Type = File
  83. Archive Device = /net/nas1/d1
  84. LabelMedia = yes;
  85. Random Access = Yes;
  86. AutomaticMount = yes;
  87. RemovableMedia = no;
  88. AlwaysOpen = no;
  89. Maximum Concurrent Jobs = 5
  90. }
  91.  
  92. Device {
  93. Name = NAS1-D2
  94. Media Type = File
  95. Archive Device = /net/nas1/d2
  96. LabelMedia = yes;
  97. Random Access = Yes;
  98. AutomaticMount = yes;
  99. RemovableMedia = no;
  100. AlwaysOpen = no;
  101. Maximum Concurrent Jobs = 5
  102. }
  103.  
  104. #
  105. # Send all messages to the Director,
  106. # mount messages also are sent to the email address
  107. #
  108. Messages {
  109. Name = Standard
  110. director = bacula-dir.TCLC = all
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement