Hilfe, Bacula macht nur ein Volume und wartet dann auf mounten des nächsten Volumes

CompuMan

New Member
Irgendwie komme ich mit Bacula nicht klar. Ich erstelle einen Job und er startet auch, aber dann meldet er "Device is BLOCKED waiting for mount of volume "Default0004"," und macht nicht weiter.

Ich dachte er legt selber neue Volumen an und mounted die dann auch selbstständig. Ich finde keine Einstellung wo ich was machen muss damit er von sich aus neue Volumen erstellt und verwaltet. Wenn ich nur wenig sichere <3,5GB gibt es keine Probleme. Speicherplatz ist auch genug da.

Oder habe ich irgendwo etwas übersehen ?

Code:
# Default pool definition
Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
  LabelFormat = Default
}

# File Pool definition
Pool {
  Name = File
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
  Maximum Volume Bytes = 50G          # Limit Volume size to something reasonable
  Maximum Volumes = 100               # Limit number of Volumes in Pool
}

Es kommt immer
Code:
22-Aug 15:51 bacula-dir JobId 14: Start Backup JobId 14, Job=Dateien.2013-08-22_15.51.22_49
22-Aug 15:51 bacula-dir JobId 14: Created new Volume "BU0007" in catalog.
22-Aug 15:51 bacula-dir JobId 14: Using Device "FileStorage"
22-Aug 15:51 bacula-sd JobId 14: Labeled new Volume "BU0007" on device "FileStorage" (/mybackup).
22-Aug 15:51 bacula-sd JobId 14: Wrote label to prelabeled Volume "BU0007" on device "FileStorage" (/mybackup)
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0007" at 0:3596866667 on device "FileStorage" (/mybackup). Write of 64512 bytes got 7060.
22-Aug 15:52 bacula-sd JobId 14: End of medium on Volume "BU0007" Bytes=3,596,866,668 Blocks=55,755 at 22-Aug-2013 15:52.
22-Aug 15:52 bacula-dir JobId 14: Created new Volume "BU0008" in catalog.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: Marking Volume "BU0008" in Error in Catalog.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: Marking Volume "BU0008" in Error in Catalog.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: Marking Volume "BU0008" in Error in Catalog.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: Marking Volume "BU0008" in Error in Catalog.
22-Aug 15:52 bacula-sd JobId 14: End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.
22-Aug 15:52 bacula-sd JobId 14: Marking Volume "BU0008" in Error in Catalog.
22-Aug 15:52 bacula-sd JobId 14: Please mount Volume "BU0008" or label a new one for:
    Job:          Dateien.2013-08-22_15.51.22_49
    Storage:      "FileStorage" (/mybackup)
    Pool:         File
    Media type:   File

Gruss
 
Last edited by a moderator:
Servus,

Du hast
Code:
Maximum Volume Bytes = 50G

aber dein Volume meldet

Code:
End of medium on Volume "BU0007" Bytes=3,596,866,668 Blocks=55,755 at 22-Aug-2013 15:52.
[...]
End of Volume "BU0008" at 0:0 on device "FileStorage" (/mybackup). Write of 215 bytes got -1.

Für mich sieht das so aus dass Du auf /mybackup nicht genug Speicherplatz zur Verfügung hast. (nicht gemountet?)

beste Grüße,
Nils
 
Mhhh,
Du hast recht. Ziemlich blöd, ich hatte mich versehen bei der Angabe des Speicherortes. Da ist wirklich zuwenig Platz.

Hab es geändert und nun läuft es :)

Gruss
 
Back
Top