Hi All,
I've noticed this question referred to a few times, but haven't managed 
to get a complete answer that actually seems to work yet. Can anyone advise?
Debian, Bacula version 2.0.3

bacula-sd.conf:
Device {
   Name = FileStorage
   Media Type = File
   Archive Device = /backups/bacula
   LabelMedia = yes;
   Random Access = Yes;
   AutomaticMount = yes;
   RemovableMedia = no;
   AlwaysOpen = no;
   MaximumPartSize = 5000M;
}


bacula-dir.conf:
Storage {
   Name = File
   Address = backups.srv.place.net
   SDPort = 9103
   Device = FileStorage
   Media Type = File
}
FileSet {
   Name = "Full Set"
   Include  {
         Options {
                 signature = MD5
                 compression=GZIP
                 onefs=no
         }
     File = /
   }
   Exclude {
     File = /proc
     File = /tmp
     File = /dev
     File = /var/log
     File = /var/cache
     File = /sys
     File = /.journal
     File = /.fsck
     File = /media/cdrom
     File = /media/floppy
   }
}
Schedule {
   Name = "WeeklyCycle"
   Run = Level=Full 1st sun at 2:05
   Run = Level=Differential 2nd-5th sun at 2:05
   Run = Level=Incremental mon-sat at 2:05
}
Pool {
   Name = Full-Pool
   Pool Type = Backup
   Recycle = yes
   AutoPrune = yes
   Volume Retention = 3 months
   Label Format = Full-
   Maximum Volumes = 3
   Maximum Volume Bytes = 10g
}
Pool {
   Name = Diff-Pool
   Pool Type = Backup
   Recycle = yes
   AutoPrune = yes
   Volume Retention = 40 days
   Label Format = Diff-
   Maximum Volumes = 3
   Maximum Volume Bytes = 10g
}
Pool {
   Name = Inc-Pool
   Pool Type = Backup
   Recycle = yes
   AutoPrune = yes
   Volume Retention = 20 days
   Label Format = Inc-
   Maximum Volumes = 3
   Maximum Volume Bytes = 10g
}
Job {
   Name = "pc1-client"
   Type = Backup
   Client = pc1-fd
   FileSet = "Full Set"
   Schedule = "WeeklyCycle"
   Storage = File
   Messages = Standard
   Pool = Full-Pool
   Full Backup Pool = Full-Pool
   Incremental Backup Pool = Inc-Pool
   Differential Backup Pool = Diff-Pool
   Write Bootstrap = "/var/lib/bacula/pc1client.bsr"
   Priority = 10
   Reschedule On Error = yes
   Reschedule Interval = 1 hour
   Reschedule Times = 3
}



So as you can see, I've set a few size limits, in the Pool's for 
limiting the volume size, however looking at the filesystem:
backups:/backups/bacula# ls -la
total 152566676
drwxrwxrwx 2 root   root        4096 2007-08-05 07:04 .
drwxr-xr-x 6 root   root        4096 2007-07-26 13:26 ..
-rw-r----- 1 bacula tape 14958125959 2007-08-19 03:43 Diff-0001
-rw-r----- 1 bacula tape           0 2007-08-06 15:44 Full-0001
-rw-r----- 1 bacula tape 95019695467 2007-08-22 04:08 Full-0002
-rw-r----- 1 bacula tape 46097847428 2007-08-22 03:38 Inc-0001

It seems to be ignoring this completely! Can anyone help/advise why its 
just growing and growing? I'm rapidly running out of disk space, as the 
limits I set should have curbed this, should it not?

Thanks in advance for any info you can give me.

-- 
Andy

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to