Advertisement
Guest User

Untitled

a guest
Sep 16th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.01 KB | None | 0 0
  1. #
  2. # Default Bacula Director Configuration file
  3. #
  4. # The only thing that MUST be changed is to add one or more
  5. # file or directory names in the Include directive of the
  6. # FileSet resource.
  7. #
  8. # For Bacula release 5.2.12 (12 September 2012) -- gentoo
  9. #
  10. # You might also want to change the default email address
  11. # from root to your address. See the "mail" and "operator"
  12. # directives in the Messages resource.
  13. #
  14.  
  15. Director { # define myself
  16. Name = castellan-dir
  17. DIRport = 9101 # where we listen for UA connections
  18. QueryFile = "/usr/libexec/bacula/query.sql"
  19. WorkingDirectory = "/var/lib/bacula"
  20. PidDirectory = "/var/run"
  21. Maximum Concurrent Jobs = 1
  22. Password = "GRek4WPD2RlNGkdzhW00zyA6Xg2FU/fFMVP2eQyWEzi6" # Console password
  23. Messages = Daemon
  24. }
  25.  
  26. JobDefs {
  27. Name = "DefaultJob"
  28. Type = Backup
  29. Level = Incremental
  30. Client = castellan-fd
  31. # FileSet = "Full Set"
  32. Schedule = "WeeklyCycle"
  33. Storage = MainBackupArray
  34. Messages = Standard
  35. Pool = File
  36. Priority = 10
  37. Write Bootstrap = "/var/lib/bacula/%c.bsr"
  38.  
  39. RunScript {
  40. RunsWhen = Before
  41. FailJobOnError = No
  42. RunsOnClient = No
  43. Command = "/bin/mount /dev/md4"
  44. }
  45. RunScript {
  46. RunsWhen = After
  47. RunsOnSuccess = Yes
  48. RunsOnFailure = Yes
  49. RunsOnClient = No
  50. Command = "/bin/umount /dev/md4"
  51. }
  52.  
  53. }
  54.  
  55.  
  56. #
  57. # Define the main nightly save backup job
  58. # By default, this job will back up to disk in /tmp
  59. Job {
  60. Name = "BackupCastellan"
  61. JobDefs = "DefaultJob"
  62. FileSet = "Full Set"
  63. }
  64.  
  65. Job {
  66. Name = "BackupLiege"
  67. JobDefs = "DefaultJob"
  68. Client = liege-fd
  69. FileSet = "LiegeFullset"
  70. }
  71.  
  72. #Job {
  73. # Name = "BackupClient2"
  74. # Client = castellan2-fd
  75. # JobDefs = "DefaultJob"
  76. #}
  77.  
  78. # Backup the catalog database (after the nightly save)
  79. Job {
  80. Name = "BackupCatalog"
  81. JobDefs = "DefaultJob"
  82. Level = Full
  83. FileSet = "Catalog"
  84. Schedule = "WeeklyCycleAfterBackup"
  85. # This creates an ASCII copy of the catalog
  86. # Arguments to make_catalog_backup.pl are:
  87. # make_catalog_backup.pl <catalog-name>
  88. RunBeforeJob = "/usr/libexec/bacula/make_catalog_backup.pl MyCatalog"
  89. # This deletes the copy of the catalog
  90. RunAfterJob = "/usr/libexec/bacula/delete_catalog_backup"
  91. Write Bootstrap = "/var/lib/bacula/%n.bsr"
  92. Priority = 11 # run after main backup
  93. }
  94.  
  95. #
  96. # Standard Restore template, to be changed by Console program
  97. # Only one such job is needed for all Jobs/Clients/Storage ...
  98. #
  99. Job {
  100. Name = "RestoreFiles"
  101. Type = Restore
  102. Client = castellan-fd
  103. FileSet = "Full Set"
  104. Storage = MainBackupArray
  105. Pool = Default
  106. Messages = Standard
  107. Where = /tmp/bacula-restores
  108.  
  109. RunScript {
  110. RunsWhen = Before
  111. FailJobOnError = No
  112. RunsOnClient = No
  113. Command = "/bin/mount /dev/md4"
  114. }
  115. RunScript {
  116. RunsWhen = After
  117. RunsOnSuccess = Yes
  118. RunsOnFailure = Yes
  119. RunsOnClient = No
  120. Command = "/bin/umount /dev/md4"
  121. }
  122.  
  123. }
  124.  
  125.  
  126. # List of files to be backed up
  127. FileSet {
  128. Name = "Full Set"
  129. Include {
  130. Options {
  131. signature = MD5
  132. compression=gzip
  133. }
  134. File = /
  135. File = /boot
  136. File = /var
  137. }
  138.  
  139. Exclude {
  140. File = /dev
  141. File = /var/lib/bacula
  142. File = /proc
  143. File = /mnt
  144. File = /media
  145. File = /.journal
  146. File = /.fsck
  147. File = /var/lib/minecraft/wholebackups
  148. File = /var/lib/minecraft/backups
  149. File = /var/nas/live_torrents
  150. }
  151. }
  152.  
  153. FileSet {
  154. Name = "LiegeFullset"
  155. Include {
  156. Options {
  157. signature = MD5
  158. compression=gzip
  159. }
  160. File = "C:/"
  161. }
  162.  
  163. Exclude {
  164. File = "C:/Temp"
  165. }
  166. }
  167.  
  168.  
  169.  
  170.  
  171. #
  172. # When to do the backups, full backup on first sunday of the month,
  173. # differential (i.e. incremental since full) every other sunday,
  174. # and incremental backups other days
  175. Schedule {
  176. Name = "WeeklyCycle"
  177. Run = Full 1st sun at 2:05
  178. Run = Differential 2nd-5th sun at 2:05
  179. Run = Incremental mon-sat at 2:05
  180. }
  181.  
  182. # This schedule does the catalog. It starts after the WeeklyCycle
  183. Schedule {
  184. Name = "WeeklyCycleAfterBackup"
  185. Run = Full sun-sat at 4:00
  186. }
  187.  
  188. # This is the backup of the catalog
  189. FileSet {
  190. Name = "Catalog"
  191. Include {
  192. Options {
  193. signature = MD5
  194. }
  195. File = "/var/lib/bacula/bacula.sql"
  196. }
  197. }
  198.  
  199. # Client (File Services) to backup
  200. Client {
  201. Name = castellan-fd
  202. Address = castellan
  203. FDPort = 9102
  204. Catalog = MyCatalog
  205. Password = "PeVkZSMSO/rvermyd0shMYfTGg70P3gB2YBdkXcEwDdE" # password for FileDaemon
  206. File Retention = 2 months # 30 days
  207. Job Retention = 12 months # six months
  208. AutoPrune = yes # Prune expired Jobs/Files
  209. }
  210.  
  211. # Client (File Services) to backup
  212. Client {
  213. Name = liege-fd
  214. Address = liege
  215. FDPort = 9102
  216. Catalog = MyCatalog
  217. Password = "vZwrnQRZanw4q8BE3BEraGsc9UQnehYHNyvirP1fhURU" # password for FileDaemon
  218. File Retention = 2 months # 30 days
  219. Job Retention = 12 months # six months
  220. AutoPrune = yes # Prune expired Jobs/Files
  221. }
  222.  
  223. #
  224. # Second Client (File Services) to backup
  225. # You should change Name, Address, and Password before using
  226. #
  227. #Client {
  228. # Name = castellan2-fd
  229. # Address = castellan2
  230. # FDPort = 9102
  231. # Catalog = MyCatalog
  232. # Password = "PeVkZSMSO/rvermyd0shMYfTGg70P3gB2YBdkXcEwDdE2" # password for FileDaemon 2
  233. # File Retention = 30 days # 30 days
  234. # Job Retention = 6 months # six months
  235. # AutoPrune = yes # Prune expired Jobs/Files
  236. #}
  237.  
  238.  
  239. # Definition of file storage device
  240. Storage {
  241. Name = MainBackupArray
  242. # Do not use "localhost" here
  243. Address = 192.168.10.192 # N.B. Use a fully qualified name here
  244. SDPort = 9103
  245. Password = "3Yzd6Ohb5GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2"
  246. Device = MainBackupArray
  247. Media Type = File
  248. }
  249.  
  250.  
  251.  
  252. # Definition of DDS tape storage device
  253. #Storage {
  254. # Name = DDS-4
  255. # Do not use "localhost" here
  256. # Address = castellan # N.B. Use a fully qualified name here
  257. # SDPort = 9103
  258. # Password = "3Yzd6Ohb5GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2" # password for Storage daemon
  259. # Device = DDS-4 # must be same as Device in Storage daemon
  260. # Media Type = DDS-4 # must be same as MediaType in Storage daemon
  261. # Autochanger = yes # enable for autochanger device
  262. #}
  263.  
  264. # Definition of 8mm tape storage device
  265. #Storage {
  266. # Name = "8mmDrive"
  267. # Do not use "localhost" here
  268. # Address = castellan # N.B. Use a fully qualified name here
  269. # SDPort = 9103
  270. # Password = "3Yzd6Ohb5GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2"
  271. # Device = "Exabyte 8mm"
  272. # MediaType = "8mm"
  273. #}
  274.  
  275. # Definition of DVD storage device
  276. #Storage {
  277. # Name = "DVD"
  278. # Do not use "localhost" here
  279. # Address = castellan # N.B. Use a fully qualified name here
  280. # SDPort = 9103
  281. # Password = "3Yzd6Ohb5GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2"
  282. # Device = "DVD Writer"
  283. # MediaType = "DVD"
  284. #}
  285.  
  286.  
  287. # Generic catalog service
  288. Catalog {
  289. Name = MyCatalog
  290. # Uncomment the following line if you want the dbi driver
  291. # dbdriver = "dbi:mysql"; dbaddress = 127.0.0.1; dbport =
  292. dbname = "bacula"; dbuser = "bacula"; dbpassword = "GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2"
  293. }
  294.  
  295. # Reasonable message delivery -- send most everything to email address
  296. # and to the console
  297. Messages {
  298. Name = Standard
  299. #
  300. # NOTE! If you send to two email or more email addresses, you will need
  301. # to replace the %r in the from field (-f part) with a single valid
  302. # email address in both the mailcommand and the operatorcommand.
  303. # What this does is, it sets the email address that emails would display
  304. # in the FROM field, which is by default the same email as they're being
  305. # sent to. However, if you send email to more than one address, then
  306. # you'll have to set the FROM address manually, to a single address.
  307. # for example, a 'no-reply@mydomain.com', is better since that tends to
  308. # tell (most) people that its coming from an automated source.
  309.  
  310. #
  311. mailcommand = "/usr/sbin/bsmtp -h localhost -f "(Bacula) <bacula@aehdev.com>" -s "Bacula: %t %e of %c %l" %r"
  312. operatorcommand = "/usr/sbin/bsmtp -h localhost -f "(Bacula) <bacula@aehdev.com>" -s "Bacula: Intervention needed for %j" %r"
  313. mail = aeheathc@gmail.com = all, !skipped
  314. operator = aeheathc@gmail.com = mount
  315. console = all, !skipped, !saved
  316. #
  317. # WARNING! the following will create a file that you must cycle from
  318. # time to time as it will grow indefinitely. However, it will
  319. # also keep all your messages if they scroll off the console.
  320. #
  321. append = "/var/log/bacula/working/bacula.log" = all, !skipped
  322. catalog = all
  323. }
  324.  
  325.  
  326. #
  327. # Message delivery for daemon messages (no job).
  328. Messages {
  329. Name = Daemon
  330. mailcommand = "/usr/sbin/bsmtp -h localhost -f "(Bacula) <%r>" -s "Bacula daemon message" %r"
  331. mail = aeheathc@gmail.com = all, !skipped
  332. console = all, !skipped, !saved
  333. append = "/var/log/bacula/working/bacula.log" = all, !skipped
  334. }
  335.  
  336. # Default pool definition
  337. Pool {
  338. Name = Default
  339. Pool Type = Backup
  340. Recycle = yes # Bacula can automatically recycle Volumes
  341. AutoPrune = yes # Prune expired volumes
  342. Volume Retention = 2 days # one year
  343. }
  344.  
  345. # File Pool definition
  346. Pool {
  347. Name = File
  348. Pool Type = Backup
  349. Recycle = yes # Bacula can automatically recycle Volumes
  350. AutoPrune = yes # Prune expired volumes
  351. Volume Retention = 2 days # one year
  352. Maximum Volume Bytes = 100G # Limit Volume size to something reasonable
  353. Maximum Volumes = 1000 # Limit number of Volumes in Pool
  354. LabelFormat = "Vol"
  355. }
  356.  
  357.  
  358. # Scratch pool definition
  359. Pool {
  360. Name = Scratch
  361. Pool Type = Backup
  362. }
  363.  
  364. #
  365. # Restricted console used by tray-monitor to get the status of the director
  366. #
  367. Console {
  368. Name = castellan-mon
  369. Password = "4BcHoJRAOkZJlMf8wm6s11ZoAfwYYpefAnMstlzfUj7h"
  370. CommandACL = status, .status
  371. }
  372.  
  373. #
  374. # Default Bacula File Daemon Configuration file
  375. #
  376. # For Bacula release 5.2.13 (19 February 2013) -- gentoo
  377. #
  378. # There is not much to change here except perhaps the
  379. # File daemon Name to
  380. #
  381.  
  382. #
  383. # List Directors who are permitted to contact this File daemon
  384. #
  385. Director {
  386. Name = castellan-dir
  387. Password = "PeVkZSMSO/rvermyd0shMYfTGg70P3gB2YBdkXcEwDdE"
  388. }
  389.  
  390. #
  391. # Restricted Director, used by tray-monitor to get the
  392. # status of the file daemon
  393. #
  394. Director {
  395. Name = castellan-mon
  396. Password = "QEN/69pxCIYQ9GOvJK+XL1VGLl8ovRxfSMOe1Kt2Q/Fp"
  397. Monitor = yes
  398. }
  399.  
  400. #
  401. # "Global" File daemon configuration specifications
  402. #
  403. FileDaemon { # this is me
  404. Name = castellan-fd
  405. FDport = 9102 # where we listen for the director
  406. WorkingDirectory = /var/lib/bacula
  407. Pid Directory = /var/run
  408. Maximum Concurrent Jobs = 20
  409. }
  410.  
  411. # Send all messages except skipped files back to Director
  412. Messages {
  413. Name = Standard
  414. director = castellan-dir = all, !skipped, !restored
  415. }
  416.  
  417. #
  418. # Default Bacula Storage Daemon Configuration file
  419. #
  420. # For Bacula release 5.2.12 (12 September 2012) -- gentoo
  421. #
  422. # You may need to change the name of your tape drive
  423. # on the "Archive Device" directive in the Device
  424. # resource. If you change the Name and/or the
  425. # "Media Type" in the Device resource, please ensure
  426. # that dird.conf has corresponding changes.
  427. #
  428.  
  429. Storage { # definition of myself
  430. Name = castellan-sd
  431. SDPort = 9103 # Director's port
  432. WorkingDirectory = "/var/lib/bacula"
  433. Pid Directory = "/var/run"
  434. Maximum Concurrent Jobs = 20
  435. }
  436.  
  437. #
  438. # List Directors who are permitted to contact Storage daemon
  439. #
  440. Director {
  441. Name = castellan-dir
  442. Password = "3Yzd6Ohb5GMWfMZx8GJbQNf06BSV3WpMQK3Tl3tTsil2"
  443. }
  444.  
  445. #
  446. # Restricted Director, used by tray-monitor to get the
  447. # status of the storage daemon
  448. #
  449. Director {
  450. Name = castellan-mon
  451. Password = "uA1iI8Vxirh+JZc7zPTengOQt978CG3F6V3MNI/I2Sbi"
  452. Monitor = yes
  453. }
  454.  
  455. #
  456. # Note, for a list of additional Device templates please
  457. # see the directory <bacula-source>/examples/devices
  458. # Or follow the following link:
  459. # http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/examples/devices/
  460. #
  461.  
  462. #
  463. # Devices supported by this Storage daemon
  464. # To connect, the Director's bacula-dir.conf must have the
  465. # same Name and MediaType.
  466. #
  467.  
  468. Device {
  469. Name = MainBackupArray
  470. Media Type = File
  471. Archive Device = /mnt/backup/main
  472. LabelMedia = yes; # lets Bacula label unlabeled media
  473. Random Access = Yes;
  474. AutomaticMount = yes; # when device opened, read it
  475. Requires Mount = no;
  476. RemovableMedia = no;
  477. AlwaysOpen = no;
  478. #Mount Command = "/bin/mount /dev/md4";
  479. #Unmount Command = "/bin/umount /dev/md4";
  480. Mount Point = "/mnt/backup"
  481. Write Part Command = ""
  482. }
  483.  
  484. #
  485. # An autochanger device with two drives
  486. #
  487. #Autochanger {
  488. # Name = Autochanger
  489. # Device = Drive-1
  490. # Device = Drive-2
  491. # Changer Command = "/usr/libexec/bacula/mtx-changer %c %o %S %a %d"
  492. # Changer Device = /dev/sg0
  493. #}
  494.  
  495. #Device {
  496. # Name = Drive-1 #
  497. # Drive Index = 0
  498. # Media Type = DLT-8000
  499. # Archive Device = /dev/nst0
  500. # AutomaticMount = yes; # when device opened, read it
  501. # AlwaysOpen = yes;
  502. # RemovableMedia = yes;
  503. # RandomAccess = no;
  504. # AutoChanger = yes
  505. # #
  506. # # Enable the Alert command only if you have the mtx package loaded
  507. # # Note, apparently on some systems, tapeinfo resets the SCSI controller
  508. # # thus if you turn this on, make sure it does not reset your SCSI
  509. # # controller. I have never had any problems, and smartctl does
  510. # # not seem to cause such problems.
  511. # #
  512. # Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
  513. # If you have smartctl, enable this, it has more info than tapeinfo
  514. # Alert Command = "sh -c 'smartctl -H -l error %c'"
  515. #}
  516.  
  517. #Device {
  518. # Name = Drive-2 #
  519. # Drive Index = 1
  520. # Media Type = DLT-8000
  521. # Archive Device = /dev/nst1
  522. # AutomaticMount = yes; # when device opened, read it
  523. # AlwaysOpen = yes;
  524. # RemovableMedia = yes;
  525. # RandomAccess = no;
  526. # AutoChanger = yes
  527. # # Enable the Alert command only if you have the mtx package loaded
  528. # Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
  529. # If you have smartctl, enable this, it has more info than tapeinfo
  530. # Alert Command = "sh -c 'smartctl -H -l error %c'"
  531. #}
  532.  
  533. #
  534. # A Linux or Solaris LTO-2 tape drive
  535. #
  536. #Device {
  537. # Name = LTO-2
  538. # Media Type = LTO-2
  539. # Archive Device = /dev/nst0
  540. # AutomaticMount = yes; # when device opened, read it
  541. # AlwaysOpen = yes;
  542. # RemovableMedia = yes;
  543. # RandomAccess = no;
  544. # Maximum File Size = 3GB
  545. ## Changer Command = "/usr/libexec/bacula/mtx-changer %c %o %S %a %d"
  546. ## Changer Device = /dev/sg0
  547. ## AutoChanger = yes
  548. # # Enable the Alert command only if you have the mtx package loaded
  549. ## Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
  550. ## If you have smartctl, enable this, it has more info than tapeinfo
  551. ## Alert Command = "sh -c 'smartctl -H -l error %c'"
  552. #}
  553.  
  554. #
  555. # A Linux or Solaris LTO-3 tape drive
  556. #
  557. #Device {
  558. # Name = LTO-3
  559. # Media Type = LTO-3
  560. # Archive Device = /dev/nst0
  561. # AutomaticMount = yes; # when device opened, read it
  562. # AlwaysOpen = yes;
  563. # RemovableMedia = yes;
  564. # RandomAccess = no;
  565. # Maximum File Size = 4GB
  566. ## Changer Command = "/usr/libexec/bacula/mtx-changer %c %o %S %a %d"
  567. ## Changer Device = /dev/sg0
  568. ## AutoChanger = yes
  569. # # Enable the Alert command only if you have the mtx package loaded
  570. ## Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
  571. ## If you have smartctl, enable this, it has more info than tapeinfo
  572. ## Alert Command = "sh -c 'smartctl -H -l error %c'"
  573. #}
  574.  
  575. #
  576. # A Linux or Solaris LTO-4 tape drive
  577. #
  578. #Device {
  579. # Name = LTO-4
  580. # Media Type = LTO-4
  581. # Archive Device = /dev/nst0
  582. # AutomaticMount = yes; # when device opened, read it
  583. # AlwaysOpen = yes;
  584. # RemovableMedia = yes;
  585. # RandomAccess = no;
  586. # Maximum File Size = 5GB
  587. ## Changer Command = "/usr/libexec/bacula/mtx-changer %c %o %S %a %d"
  588. ## Changer Device = /dev/sg0
  589. ## AutoChanger = yes
  590. # # Enable the Alert command only if you have the mtx package loaded
  591. ## Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
  592. ## If you have smartctl, enable this, it has more info than tapeinfo
  593. ## Alert Command = "sh -c 'smartctl -H -l error %c'"
  594. #}
  595.  
  596.  
  597.  
  598.  
  599. #
  600. # A FreeBSD tape drive
  601. #
  602. #Device {
  603. # Name = DDS-4
  604. # Description = "DDS-4 for FreeBSD"
  605. # Media Type = DDS-4
  606. # Archive Device = /dev/nsa1
  607. # AutomaticMount = yes; # when device opened, read it
  608. # AlwaysOpen = yes
  609. # Offline On Unmount = no
  610. # Hardware End of Medium = no
  611. # BSF at EOM = yes
  612. # Backward Space Record = no
  613. # Fast Forward Space File = no
  614. # TWO EOF = yes
  615. # If you have smartctl, enable this, it has more info than tapeinfo
  616. # Alert Command = "sh -c 'smartctl -H -l error %c'"
  617. #}
  618.  
  619. #
  620. # Send all messages to the Director,
  621. # mount messages also are sent to the email address
  622. #
  623. Messages {
  624. Name = Standard
  625. director = castellan-dir = all
  626. }
  627.  
  628. #
  629. # Default Bacula File Daemon Configuration file
  630. #
  631. # For Bacula release 7.0.5 (08/05/14) -- Windows MinGW64
  632. #
  633. # There is not much to change here except perhaps the
  634. # File daemon Name
  635. #
  636.  
  637. #
  638. # "Global" File daemon configuration specifications
  639. #
  640. FileDaemon { # this is me
  641. Name = liege-fd
  642. FDport = 9102 # where we listen for the director
  643. WorkingDirectory = "C:\Program Files\Bacula\working"
  644. Pid Directory = "C:\Program Files\Bacula\working"
  645. Plugin Directory = "C:\Program Files\Bacula\plugins"
  646. Maximum Concurrent Jobs = 10
  647. }
  648.  
  649. #
  650. # List Directors who are permitted to contact this File daemon
  651. #
  652. Director {
  653. Name = castellan-dir
  654. Password = "vZwrnQRZanw4q8BE3BEraGsc9UQnehYHNyvirP1fhURU" # Director must know this password
  655. }
  656.  
  657. #
  658. # Restricted Director, used by tray-monitor to get the
  659. # status of the file daemon
  660. #
  661. Director {
  662. Name = liege-mon
  663. Password = ""
  664. Monitor = yes
  665. }
  666.  
  667. # Send all messages except skipped files back to Director
  668. Messages {
  669. Name = Standard
  670. director = castellan-dir = all, !skipped, !restored
  671. }
  672.  
  673. 28-Mar 02:05 castellan-dir JobId 1518: No prior Full backup Job record found.
  674. 28-Mar 02:05 castellan-dir JobId 1518: No prior or suitable Full backup found in catalog. Doing FULL backup.
  675. 28-Mar 02:07 castellan-dir JobId 1518: shell command: run BeforeJob "/bin/mount /dev/md4"
  676. 28-Mar 02:07 castellan-dir JobId 1518: Start Backup JobId 1518, Job=BackupLiege.2015-03-28_02.05.00_19
  677. 28-Mar 02:07 castellan-dir JobId 1518: Using Device "MainBackupArray" to write.
  678. 28-Mar 01:48 liege-fd JobId 1518: Fatal error: Authorization key rejected by Storage daemon.
  679. Please see http://www.bacula.org/en/rel-manual/Bacula_Freque_Asked_Questi.html#SECTION00260000000000000000 for help.
  680. 28-Mar 02:07 castellan-dir JobId 1518: Fatal error: Bad response to Storage command: wanted 2000 OK storage
  681. , got 2902 Bad storage
  682.  
  683. 28-Mar 02:07 castellan-dir JobId 1518: Error: Bacula castellan-dir 5.2.13 (19Jan13):
  684. Build OS: x86_64-pc-linux-gnu gentoo
  685. JobId: 1518
  686. Job: BackupLiege.2015-03-28_02.05.00_19
  687. Backup Level: Full (upgraded from Incremental)
  688. Client: "liege-fd" 7.0.5 (04Aug14) Microsoft Windows 7 Ultimate Edition Service Pack 1 (build 7601), 64-bit,Cross-compile,Win64
  689. FileSet: "LiegeFullset" 2015-03-18 02:05:00
  690. Pool: "File" (From Job resource)
  691. Catalog: "MyCatalog" (From Client resource)
  692. Storage: "MainBackupArray" (From Job resource)
  693. Scheduled time: 28-Mar-2015 02:05:00
  694. Start time: 28-Mar-2015 02:07:29
  695. End time: 28-Mar-2015 02:07:41
  696. Elapsed time: 12 secs
  697. Priority: 10
  698. FD Files Written: 0
  699. SD Files Written: 0
  700. FD Bytes Written: 0 (0 B)
  701. SD Bytes Written: 0 (0 B)
  702. Rate: 0.0 KB/s
  703. Software Compression: None
  704. VSS: no
  705. Encryption: no
  706. Accurate: no
  707. Volume name(s):
  708. Volume Session Id: 127
  709. Volume Session Time: 1422045928
  710. Last Volume Bytes: 86,414,167,951 (86.41 GB)
  711. Non-fatal FD errors: 2
  712. SD Errors: 0
  713. FD termination status: Error
  714. SD termination status: Waiting on FD
  715. Termination: *** Backup Error ***
  716.  
  717. 28-Mar 02:07 castellan-dir JobId 1518: shell command: run AfterJob "/bin/umount /dev/md4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement