Hello,

On 3/27/2006 9:30 AM, [EMAIL PROTECTED] wrote:
Hello! I have a problem with Concurrent Jobs. I've set all options which
allow Concurrent Jobs, but have any luck. Perfoming only to tasks at the
moment for each of divice.

Here is my config:
bacula-sd.conf:
................
Storage {                             # definition of myself
  Name = backup1-sd
  SDPort = 9103                  # Director's port
  SDAddress = 192.168.0.24
  WorkingDirectory = "/var/lib/bacula"
  Pid Directory = "/var/run"
  Maximum Concurrent Jobs = 20

Ok.

}

Device {
        Name = STORAGE2
        Media Type = HDD
        Archive Device = /storage/disk2
        LabelMedia = yes;
        Random Access = Yes;
        AutomaticMount = yes;
        RemovableMedia = no;
        AlwaysOpen = yes;
}

I notice that you have the same media type for several storage devices; that's not a good idea as it will probably result in problems when you want to restore.

Device {
        Name = STORAGE3
        Media Type = HDD
        Archive Device = /storage/disk3
        LabelMedia = yes;
        Random Access = Yes;
        AutomaticMount = yes;
        RemovableMedia = no;
        AlwaysOpen = yes;
}
............................
bacula-dir.conf:
Storage {
  Name = HDD
  Address = "192.168.0.24"
  SDPort = 9103
  Password = "blablabla"
  Device = STORAGE2
  Device = STORAGE3

Two storage devices referenced?
I'm not sure that this will work. Or rather, I'm quite sure that it won't work as you want it.

  Media Type = HDD            # must be same as MediaType in Storage daemon
  Maximum Concurrent Jobs = 20
}

Client
{
        Name = "box11"
        Address = "192.168.0.11"
        FDPort = 9102
        Catalog = MyCatalog
        Password = "blablabla"
        File Retention = 30 days
        Job Retention = 30 days
        AutoPrune = yes
}

There is something missing here: Which jobs do you want to run in parallel, from which clients?

It might be helpful if you started the jobs in question manually and verified the result with a 'status director' command. If the jobs don't run in parallel, use the 'show' command to display information about all the clients, jobs, and storages you try to use at that time.

If you don't see the problem yourself, you can, of course, post that information!

Arno

Pool
{
        Name = full_box11.pool
        Pool Type = Backup
        LabelFormat = full_box11_pool-
        Recycle = yes
        AutoPrune = yes
        VolumeRetention = 30 days
        Accept Any Volume = yes
        Maximum Volume Jobs = 4
}
Job
{
        Name = box11_etc
        Client = box11
        JobDefs = DefJob
        FileSet = box11_etc
        Schedule = Box
        Write Bootstrap = "/var/lib/bacula/box11.bsr"
        Full Backup Pool = full_box11.pool
        SpoolData = yes
}
FileSet
{
        Name = box11_etc
        Include
        {
                Options
                {
                        signature=MD5
                };
                File = /etc
        }
}



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


--
IT-Service Lehmann                    [EMAIL PROTECTED]
Arno Lehmann                  http://www.its-lehmann.de


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to