> Yes, Please do so.
Ok, these are the conf files

bacula-dir.conf
--------------------------------------
Director {                            
  Name = gsdbaculaserver-dir
  Description = "Bacula Director IP Testing Server"
  Password = "72d3399cab6f8c711aed3824f0f934b95822ec9250a2245332b75f0f37c3b786" 
  # gsdbaculaserver-dir SHA256 Console Password
  Messages = Daemon
  WorkingDirectory = "/var/lib/bacula"
  PidDirectory = "/var/run/bacula"
  QueryFile = "/etc/bacula/scripts/query.sql"
  Maximum Concurrent Jobs = 2
  FD Connect Timeout = 15min
  SD Connect Timeout = 15min       
  DIRPort = 9101  
}
JobDefs {
  Name = "WinIncremental"
  Type = Backup
  Level = Incremental
  FileSet = "FileSetWin32Clients"                                       
  Schedule = "WeeklyCycle"
  Storage = gsdbaculaserver-sd
  Messages = Daemon
  Priority = 10
}
JobDefs {
  Name = "OthersIncremental"
  Type = Backup
  Level = Incremental                                                           
  FileSet = "FileSetOthersClients"                                      
  Schedule = "WeeklyCycle"
  Storage = gsdbaculaserver-sd
  Messages = Daemon
  Priority = 10
}
Job {
  Name = "BackupWindows"
  Client = "win32client"
  JobDefs = "WinIncremental"
  Pool = Win32Pool
  Write Bootstrap = "/var/lib/bacula/Windows.bsr"
}
Job {
  Name = "BackupCatalog"
  Client = win32client
  JobDefs = "WinIncremental"
  Pool = CatalogPool
  Level = Full
  FileSet = "CatalogBackup"
  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup <dbname> <user> 
<password>"
  # This deletes the copy of the catalog
  RunAfterJob  = "/etc/bacula/scripts/delete_catalog_backup"
  Write Bootstrap = "/var/lib/bacula/BackupCatalog.bsr"
  Priority = 10                   # run after main backup
}
Client {
  Name = win32client                                    
  Address = 10.128.50.5                                 
  FDPort = 9102
  Catalog = MyCatalog
  Password = "f799e1e82c796c31b697365aa044772c73b7a56568d25bcd21077228d1e64118" 
       # gsdclient SHA256 Password
  File Retention = 6days
  Job Retention = 6days
  AutoPrune = yes
  Maximum Concurrent Jobs = 2
}
FileSet {
  Name = "FileSetWin32Clients"
  Enable VSS = yes
  Include {
        Options {
        signature = MD5         #Create MD5 Signature
        compression=GZIP5       #Compress Incoming Data on the client
        Exclude = yes
        IgnoreCase = yes
        # Exclude Mozilla-based programs' file caches
        WildDir = "[A-Z]:/Documents and Settings/*/Application 
Data/*/Profiles/*/*/Cache"
        WildDir = "[A-Z]:/Documents and Settings/*/Application 
Data/*/Profiles/*/*/Cache.Trash"

        # Exclude directories full of lots and lots of useless little files
        WildDir = "[A-Z]:/Documents and Settings/*/Cookies"
        WildDir = "[A-Z]:/Documents and Settings/*/Recent"
        WildDir = "[A-Z]:/Documents and Settings/*/Local Settings/History"
        WildDir = "[A-Z]:/Documents and Settings/*/Local Settings/Temp"
        WildDir = "[A-Z]:/Documents and Settings/*/Local Settings/Temporary 
Internet Files"

        # These are always open and unable to be backed up
        WildFile = "[A-Z]:/Documents and Settings/All Users/Application 
Data/Microsoft/Network/Downloader/qmgr[01].dat"

        # Temporary directories & files
        WildDir = "[A-Z]:/WINDOWS/Temp"
        WildDir = "[A-Z]:/temp"
        WildFile = "*.tmp"
                WildFile = "*.thumb"

        # Recycle bins
        WildDir = "[A-Z]:/RECYCLER"

        # Swap files
        WildFile = "[A-Z]:/pagefile.sys"
   }
    File = "d:/Personal/WWW/portaldt.rar" 
  }

  Exclude {
    #File = "c:/test"                            #Define Folders to exclude
  }
}
FileSet {
  Name = "FileSetOthersClients"
}
FileSet {
  Name = "CatalogBackup"
  Include {
    Options {
      signature = MD5
    }
    File = /var/lib/bacula/bacula.sql
  }
}
Pool {
  Name = Win32Pool
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
}
Pool {
  Name = OthersPool
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
}
Pool {
  Name = CatalogPool
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
}
Schedule {
  Name = "WeeklyCycle"
  Run = Level=Full Pool=Win32Pool sun-sat at 00:00       
}
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Full sun-sat at 00:00
}
Storage {
  Name = gsdbaculaserver-sd                   
  Address = 10.128.50.5         
  SDPort = 9103
  Password = "c0f0d3c2af8a6344eab966b5bb13e8b9536769b3510324aab66c23538a1e35f0" 
# gsdstorage SHA256 Password
  Device = FileStorage
  Media Type = File
}
Catalog {
  Name = MyCatalog
  dbname = bacula;
  user = bacula;  
  password = ""
}
Messages {
  Name = Standard
  mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula: Intervention needed for %j\" %r"
  mail = [EMAIL PROTECTED] = all, !skipped            
  operator = [EMAIL PROTECTED] = mount
  console = all, !skipped, !saved
  append = "/var/lib/bacula/log" = all, !skipped
}
Messages {
  Name = Daemon
  mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s 
\"Bacula daemon message\" %r"
  mail = [EMAIL PROTECTED] = all, !skipped            
  console = all, !skipped, !saved
  append = "/var/lib/bacula/log" = all, !skipped
}
Console {
  Name = gsdserver-mon
  Password = "Cv70F6pf1t6pBopT4vQOnigDrR0v3L"
  CommandACL = status, .status
}

bacula-sd.conf
--------------------------------------
Storage {                             
  Name = gsdbaculaserver-sd
  SDAddress = 10.128.50.155
  SDport = 9103
  Working Directory = "/var/bacula/working"
  Pid Directory = "/var/run"
  Maximum Concurrent Jobs = 20
}
Director {
  Name = gsdbaculaserver-dir
  Password = "c0f0d3c2af8a6344eab966b5bb13e8b9536769b3510324aab66c23538a1e35f0"
}
Director {
  Name = gsdserver-mon
  Password = "baculatestpass"
  Monitor = yes
}
Device {
  Name = FileStorage
  Media Type = File
  LabelMedia = yes
  Random Access = yes
  AutomaticMount = yes
  RemovableMedia = no
  AlwaysOpen = no
  Archive Device = /data/projectsave
}
Messages {
  Name = Standard
  director = gsdbaculaserver-dir = all
}

bacula-fd.conf
--------------------------------------
Director {
  Name = gsdbaculaserver-dir
  Password = "f799e1e82c796c31b697365aa044772c73b7a56568d25bcd21077228d1e64118" 
       # gsdclient SHA256 Password
}
Director {
  Name = gsdserver-mon
  Password = "tfqEogAG69FWJKCLRwiesjfld56dCrgdP32Ir4YEFZFr"
  Monitor = yes
}
FileDaemon {                          # this is me
  Name = reyserv-fd
  FDport = 9102
  WorkingDirectory = /var/bacula/working
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
}
Messages {
  Name = Standard
  director = gsdserver-dir = all, !skipped, !restored
}

bconsole.conf
--------------------------------------
Director {
  Name = gsdbaculaserver-dir
  DIRport = 9101
  Address = 10.128.50.155
  Password = "72d3399cab6f8c711aed3824f0f934b95822ec9250a2245332b75f0f37c3b786"
}

Cheers and waiting for some answer
Ing. Reynier PĂ©rez Mira  

> 

> 
> John
> 
> 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to