If i understood correctly you want run more then one backup in the same time.
Bareos could run only one backup in the some time in one device. If you want 
run more you need add more device.

Try add in sd config 
Storage { 
  Name = bareos-sd.example.com 
  # any number >= 4 
  Maximum Concurrent Jobs = 20 
} 
 
Director { 
  Name = bareos-dir.example.com 
  Password = "<sd-secret>" 
} 
 
Device { 
  Name = FileStorage1 
  Media Type = File 
  Archive Device = /var/lib/bareos/storage 
  LabelMedia = yes 
  Random Access = yes 
  AutomaticMount = yes 
  RemovableMedia = no 
  AlwaysOpen = no 
  Maximum Concurrent Jobs = 1 
} 
 
Device { 
  Name = FileStorage2 
  Media Type = File 
  Archive Device = /var/lib/bareos/storage 
  LabelMedia = yes 
  Random Access = yes 
  AutomaticMount = yes 
  RemovableMedia = no 
  AlwaysOpen = no 
  Maximum Concurrent Jobs = 1 
} 
 
Device { 
  Name = FileStorage3 
  Media Type = File 
  Archive Device = /var/lib/bareos/storage 
  LabelMedia = yes 
  Random Access = yes 
  AutomaticMount = yes 
  RemovableMedia = no 
  AlwaysOpen = no 
  Maximum Concurrent Jobs = 1 
} 
 
Device { 
  Name = FileStorage4 
  Media Type = File 
  Archive Device = /var/lib/bareos/storage 
  LabelMedia = yes 
  Random Access = yes 
  AutomaticMount = yes 
  RemovableMedia = no 
  AlwaysOpen = no 
  Maximum Concurrent Jobs = 1 
}

And in bareos-dir
Director { 
  Name = bareos-dir.example.com 
  QueryFile = "/usr/lib/bareos/scripts/query.sql" 
  Maximum Concurrent Jobs = 10 
  Password = "<secret>" 
} 
 
Storage { 
  Name = File 
  Address = bareos-sd.bareos.com 
  Password = "<sd-secret>" 
  Device = FileStorage1 
  Device = FileStorage2 
  Device = FileStorage3 
  Device = FileStorage4 
  # number of devices = Maximum Concurrent Jobs 
  Maximum Concurrent Jobs = 4 
  Media Type = File 
} 
 
[...]

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to