Re: [Bacula-users] Has anyone installed Bacula on Fedora 12?

2010-01-06 Thread Terry L. Inzauro
On 01/06/2010 05:40 PM, brown wrap wrote:
  I tried compiling it, and received errors which I posted, but didn't
 really get an answer to. I then started to look for RPMs. I found the
 client rpm, but not the server rpm unless I don't know what I'm looking
 for. Can someone point me to the rpms I need? Thanks.
 
 
 greg
 

Are the RPMS listed here not good enough?  I se FC 9 and 10 but no 12.  If 
either of the fc9 or fc10 rpms don't work, there
is a source rpm listed and that should get your going.

bacula dloads:
http://bacula.org/en/?page=downloads

rpmbuild man page:
http://www.rpm.org/max-rpm-snapshot/rpmbuild.8.html

--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Firewall problems

2009-10-23 Thread Terry L. Inzauro
Gabriel - IP Guys wrote:
 
 
 Dear All,
 
  
 
 I need some fresh eyes on this at the moment. I made this entry in the
 firewall scripts of my Linux servers which will be running some
 component of Bacula
 
  
 
 iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 9101:9103
 -j ACCEPT
 
  
 
 I will add the source directive when I'm looking it all down, will this
 line in the firewall of all clients will allow bacula to work correctly?
 For some reason, I am having issues getting this to work, the
 configuration is fine, because it can backup and communicate locally
 with no issues. Any tips would be appreciated. Thank you
 
 ---
 
 Kind Regards,
 
 Mr Gabriel

If I'm not mistaken, you need to tell iptables to DNAT the traffic. You will 
also need to tell iptables to allow the traffic.

my example may/may not work exactly for you,  but it should get you going in 
the right direction.

iptables -A wan_dnat_chain -d $EXTERNALIP -p tcp -m tcp --dport 9103 -j DNAT 
--to-destination $BACULAHOST

iptables -A wan_to_lan_chain -d $BACULAHOST -p tcp -m tcp --dport 9103 -m 
conntrack --ctorigdst $EXTERNALIP -j ACCEPT


hope this helps.



Terry






--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Firewall problems

2009-10-23 Thread Terry L. Inzauro
Gabriel - IP Guys wrote:
 
 
 Dear All,
 
  
 
 I need some fresh eyes on this at the moment. I made this entry in the
 firewall scripts of my Linux servers which will be running some
 component of Bacula
 
  
 
 iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 9101:9103
 -j ACCEPT
 
  
 
 I will add the source directive when I'm looking it all down, will this
 line in the firewall of all clients will allow bacula to work correctly?
 For some reason, I am having issues getting this to work, the
 configuration is fine, because it can backup and communicate locally
 with no issues. Any tips would be appreciated. Thank you
 
 ---
 
 Kind Regards,
 
 Mr Gabriel
 
  
 

also, I'm assuming you are talking about a seperate linux firewall/gateway. my 
previous post is not for iptables running on
the backup client.

client config would look something like this:

# Flush old rules, old custom tables
iptables --flush
iptables --delete-chain

# Set default policies for all three default chains
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP

# Enable free use of loopback interfaces
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

# All TCP sessions should begin with SYN
iptables -A INPUT -p tcp ! --syn -m state --state NEW -s 0.0.0.0/0 -j DROP

# Accept inbound TCP packets
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p tcp --dport 9103 -m state --state NEW -s 0.0.0.0/0 -j 
ACCEPT

# Accept inbound ICMP messages
iptables -A INPUT -p ICMP --icmp-type 8 -s 0.0.0.0/0 -j ACCEPT
iptables -A INPUT -p ICMP --icmp-type 11 -s 0.0.0.0/0 -j ACCEPT

# Accept outbound packets
iptables -I OUTPUT 1 -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p udp --dport 53 -m state --state NEW -j ACCEPT

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] sorting output bconsole

2009-10-17 Thread Terry L. Inzauro
Jari Fredriksson wrote:
 
 
 17.10.2009 2:19, Terry L. Inzauro kirjoitti:
 For testing, I've decided to use the mysql command line interface and
 I have one last question. How would I take take sums of
 two columns such as JobFiles and JobBytes


 [18:13:04 r...@jenna:~]# mysql -u root -px
 Welcome to the MySQL monitor.  Commands end with ; or \g.
 Your MySQL connection id is 489
 Server version: 5.0.51a-24+lenny2-log (Debian)

 Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

 mysql  use bacula;
 Reading table information for completion of table and column names
 You can turn off this feature to get a quicker startup with -A

 Database changed
 mysql  SELECT DISTINCT Job.JobId as JobId,Client.Name as Client,   
 FileSet.FileSet AS FileSet,Level,StartTime,
 JobFiles,JobBytes,VolumeName  FROM Client,Job,JobMedia,Media,FileSet 
 WHERE Client.Name='peyton'  AND
 Client.ClientId=Job.ClientId AND Job.Type='B'  AND Job.JobStatus='T'
 AND Job.FileSetId=FileSet.FileSetId  AND
 JobMedia.JobId=Job.JobId AND JobMedia.MediaId=Media.MediaId  ORDER BY
 Job.StartTime;
 +---++---+---+-+--+---+---+

 | JobId | Client | FileSet   | Level | StartTime   |
 JobFiles | JobBytes  | VolumeName|
 +---++---+---+-+--+---+---+

 |  4700 | peyton | StandardLinux | F | 2009-09-06 05:28:54 |   
 47498 | 789899195 | FullPool_0067 |
 |  4777 | peyton | StandardLinux | D | 2009-09-13 00:37:11 |  
 50 |   2442702 | DiffPool_0004 |
 |  4910 | peyton | StandardLinux | I | 2009-09-25 00:28:57 |  
 43 |   2095221 | IncrPool_0036 |
 |  4921 | peyton | StandardLinux | I | 2009-09-26 00:29:15 |  
 41 |   2072585 | IncrPool_0090 |
 |  4932 | peyton | StandardLinux | D | 2009-09-27 00:53:34 |  
 52 |   2497277 | DiffPool_0011 |
 |  4943 | peyton | StandardLinux | I | 2009-09-28 00:29:48 |  
 50 |   2366865 | IncrPool_0037 |
 |  4954 | peyton | StandardLinux | I | 2009-09-29 00:28:55 |  
 41 |   2018132 | IncrPool_0119 |
 |  4965 | peyton | StandardLinux | I | 2009-09-30 00:38:28 |  
 41 |   2035566 | IncrPool_0136 |
 |  4976 | peyton | StandardLinux | I | 2009-10-01 00:29:36 |  
 41 |   2052047 | IncrPool_0130 |
 |  4987 | peyton | StandardLinux | I | 2009-10-02 00:31:56 |  
 45 |   2069134 | IncrPool_0011 |
 |  4998 | peyton | StandardLinux | I | 2009-10-03 00:29:48 |  
 41 |   2085954 | IncrPool_0140 |
 |  5009 | peyton | StandardLinux | F | 2009-10-04 05:36:39 |   
 47498 | 789930570 | FullPool_0009 |
 |  5020 | peyton | StandardLinux | I | 2009-10-05 00:29:15 |  
 50 |   2378897 | IncrPool_0029 |
 |  5031 | peyton | StandardLinux | I | 2009-10-06 00:29:07 |  
 41 |   2029220 | IncrPool_0004 |
 |  5042 | peyton | StandardLinux | I | 2009-10-07 00:51:50 |  
 41 |   2046245 | IncrPool_0055 |
 |  5053 | peyton | StandardLinux | I | 2009-10-08 00:28:28 |  
 41 |   2062919 | IncrPool_0077 |
 |  5108 | peyton | StandardLinux | I | 2009-10-14 01:25:39 |  
 50 |   2430892 | IncrPool_0079 |
 |  5119 | peyton | StandardLinux | I | 2009-10-14 02:41:33 |  
 50 |   2431747 | IncrPool_0027 |
 |  5130 | peyton | StandardLinux | I | 2009-10-15 00:30:11 |  
 41 |   2073822 | IncrPool_0009 |
 |  5141 | peyton | StandardLinux | I | 2009-10-16 00:30:07 |  
 41 |   2091084 | IncrPool_0005 |
 +---++---+---+-+--+---+---+

 20 rows in set (0.01 sec)
 
 If you want that same list, and add the sums at the end, I don't believe
 it is possible with MySQL client. It would be easy with Oracle SQL*Plus,
 but not with MySQL client.
 
 A simple query will return those
 
 SELECT SUM(JobFiles) AS JobFilesSum, SUM(JobBytes) AS JobBytesSum
 FROM Job ;
 
 but that is not much of interest, I guess.
 
 
 -- 
 http://www.iki.fi/jarif/
 
 Ships are safe in harbor, but they were never meant to stay there.
 
 


Ok.  Can the SQLPlus client be used with mysql?  Is it freely available?

Just thrownign this out there:
Could the limitation of the mysql client be worked around by running a few 
different queries and then appending the results
to one another? Basically run two queries, then SUN() the results of each 
query, and then combine the results to produce a
report that contains both of the individual reports information?

Also, I guess an alternative would be to run the output through a perl script 
that sums the appropriate column but its not a
very clean solution.


kind regards,


_Terry






--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications

[Bacula-users] sorting output bconsole

2009-10-16 Thread Terry L. Inzauro
Does bconsole support sorting of output?   For instance, can bconsole sort the 
output of list volumes pool=FullPool by size
or date?

kind regards,


Terry



--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] sorting output bconsole

2009-10-16 Thread Terry L. Inzauro
John Drescher wrote:
 On Fri, Oct 16, 2009 at 5:03 PM, Terry L. Inzauro
 tinza...@ha-solutions.net wrote:
 Does bconsole support sorting of output?   For instance, can bconsole sort 
 the output of list volumes pool=FullPool by size
 or date?

 kind regards,

 
 You can do that in a query.
 
 John



When you say query, I'm assuming you are suggesting I run an SQL query.  I like 
the idea, however,  I am not versed in the
ways of the SQL master.

Is there a repository of SQL queries somewhere that may be of use for reporting 
purposes?

I am trying to figure out a way to automate reporting for a client on a 
daily/weekly/monthly basis.


Terry


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] sorting output bconsole

2009-10-16 Thread Terry L. Inzauro
John Drescher wrote:
 On Fri, Oct 16, 2009 at 6:30 PM, Terry L. Inzauro
 tinza...@ha-solutions.net wrote:
 John Drescher wrote:
 On Fri, Oct 16, 2009 at 5:03 PM, Terry L. Inzauro
 tinza...@ha-solutions.net wrote:
 Does bconsole support sorting of output?   For instance, can bconsole sort 
 the output of list volumes pool=FullPool by size
 or date?

 kind regards,

 You can do that in a query.

 John


 When you say query, I'm assuming you are suggesting I run an SQL query.  I 
 like the idea, however,  I am not versed in the
 ways of the SQL master.

 Is there a repository of SQL queries somewhere that may be of use for 
 reporting purposes?

 I am trying to figure out a way to automate reporting for a client on a 
 daily/weekly/monthly basis.

 
 type query in bconsole.
 
 There are several builtin queries you can use as examples. I believe
 bacula-dir.conf specifies the location of where the query file is.
 
 On my system I have
 
  QueryFile = /usr/libexec/bacula/query.sql
 
 Add your query to that file at the end and bacula will load and
 execute that with the query command of bconsole.
 
 John


Yup.  That should do it.

For testing, I've decided to use the mysql command line interface and I have 
one last question. How would I take take sums of
two columns such as JobFiles and JobBytes


[18:13:04 r...@jenna:~]# mysql -u root -px
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 489
Server version: 5.0.51a-24+lenny2-log (Debian)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql use bacula;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql SELECT DISTINCT Job.JobId as JobId,Client.Name as Client,
FileSet.FileSet AS FileSet,Level,StartTime,
JobFiles,JobBytes,VolumeName  FROM Client,Job,JobMedia,Media,FileSet  WHERE 
Client.Name='peyton'  AND
Client.ClientId=Job.ClientId AND Job.Type='B'  AND Job.JobStatus='T' AND 
Job.FileSetId=FileSet.FileSetId  AND
JobMedia.JobId=Job.JobId AND JobMedia.MediaId=Media.MediaId  ORDER BY 
Job.StartTime;
+---++---+---+-+--+---+---+
| JobId | Client | FileSet   | Level | StartTime   | JobFiles | 
JobBytes  | VolumeName|
+---++---+---+-+--+---+---+
|  4700 | peyton | StandardLinux | F | 2009-09-06 05:28:54 |47498 | 
789899195 | FullPool_0067 |
|  4777 | peyton | StandardLinux | D | 2009-09-13 00:37:11 |   50 |   
2442702 | DiffPool_0004 |
|  4910 | peyton | StandardLinux | I | 2009-09-25 00:28:57 |   43 |   
2095221 | IncrPool_0036 |
|  4921 | peyton | StandardLinux | I | 2009-09-26 00:29:15 |   41 |   
2072585 | IncrPool_0090 |
|  4932 | peyton | StandardLinux | D | 2009-09-27 00:53:34 |   52 |   
2497277 | DiffPool_0011 |
|  4943 | peyton | StandardLinux | I | 2009-09-28 00:29:48 |   50 |   
2366865 | IncrPool_0037 |
|  4954 | peyton | StandardLinux | I | 2009-09-29 00:28:55 |   41 |   
2018132 | IncrPool_0119 |
|  4965 | peyton | StandardLinux | I | 2009-09-30 00:38:28 |   41 |   
2035566 | IncrPool_0136 |
|  4976 | peyton | StandardLinux | I | 2009-10-01 00:29:36 |   41 |   
2052047 | IncrPool_0130 |
|  4987 | peyton | StandardLinux | I | 2009-10-02 00:31:56 |   45 |   
2069134 | IncrPool_0011 |
|  4998 | peyton | StandardLinux | I | 2009-10-03 00:29:48 |   41 |   
2085954 | IncrPool_0140 |
|  5009 | peyton | StandardLinux | F | 2009-10-04 05:36:39 |47498 | 
789930570 | FullPool_0009 |
|  5020 | peyton | StandardLinux | I | 2009-10-05 00:29:15 |   50 |   
2378897 | IncrPool_0029 |
|  5031 | peyton | StandardLinux | I | 2009-10-06 00:29:07 |   41 |   
2029220 | IncrPool_0004 |
|  5042 | peyton | StandardLinux | I | 2009-10-07 00:51:50 |   41 |   
2046245 | IncrPool_0055 |
|  5053 | peyton | StandardLinux | I | 2009-10-08 00:28:28 |   41 |   
2062919 | IncrPool_0077 |
|  5108 | peyton | StandardLinux | I | 2009-10-14 01:25:39 |   50 |   
2430892 | IncrPool_0079 |
|  5119 | peyton | StandardLinux | I | 2009-10-14 02:41:33 |   50 |   
2431747 | IncrPool_0027 |
|  5130 | peyton | StandardLinux | I | 2009-10-15 00:30:11 |   41 |   
2073822 | IncrPool_0009 |
|  5141 | peyton | StandardLinux | I | 2009-10-16 00:30:07 |   41 |   
2091084 | IncrPool_0005 |
+---++---+---+-+--+---+---+
20 rows in set (0.01 sec)



Thank you for all of your help.


Terry


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile

[Bacula-users] donation

2009-09-23 Thread Terry L. Inzauro
I have two working ADIC Scalar 1000's with LTO1 drives that I would like to 
donate if the project maintainers are interested.
 Please contact me off list if you are interested in them.


regards,


_Terry

--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] upgrade issue

2009-07-22 Thread Terry L. Inzauro
list,

I had upgraded the OS from debian etch to debian lenny yesterday.  I was 
successfully running a build from backports.org
which seems vey close to the lenny package.

After the aptitude update  aptitude safe-upgrade bacula does not seem to be 
using my previous bacula db.  The db exists,
and i was able to browse the tables and verify all is still there (with 
phpmyadmin). I have also verified that the db config
is correct /etc/bacula/bacula-dir.conf.

Any ideas why bacula isn't seeing the previous db info? (eg job history, 
volumes, etc. etc)

hostname:~/bacula# grep user /etc/bacula/bacula-dir.conf
  dbname = bacula; DB Address = 127.0.0.1; user = bacula; password = XXX


# Versions prior to upgrade
bacula-director-mysql/etch uptodate 2.4.4-1~bpo40+1
bacula-client/etch uptodate 2.4.4-1~bpo40+1
bacula-console-qt/etch uptodate 2.4.4-1~bpo40+1
bacula-sd/etch uptodate 2.4.4-1~bpo40+1
bacula-fd/etch uptodate 2.4.4-1~bpo40+1
bacula-sd-mysql/etch uptodate 2.4.4-1~bpo40+1
bacula-director-common/etch uptodate 2.4.4-1~bpo40+1
bacula-common/etch uptodate 2.4.4-1~bpo40+1
bacula-doc/etch uptodate 1.38.11.1-3
bacula-server/etch uptodate 2.4.4-1~bpo40+1
bacula-console/etch uptodate 2.4.4-1~bpo40+1


# Versions after upgradebacula/lenny uptodate 2.4.4-1
bacula-client/lenny uptodate 2.4.4-1
bacula-common/lenny uptodate 2.4.4-1
bacula-console/lenny uptodate 2.4.4-1
bacula-director-common/lenny uptodate 2.4.4-1
bacula-director-sqlite3/lenny uptodate 2.4.4-1
bacula-fd/lenny uptodate 2.4.4-1
bacula-sd/lenny uptodate 2.4.4-1
bacula-sd-mysql/lenny uptodate 2.4.4-1
bacula-server/lenny uptodate 2.4.4-1
bacula-traymonitor/lenny uptodate 2.4.4-1


--
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] upgrade issue RESOLVED

2009-07-22 Thread Terry L. Inzauro
Timo Neuvonen wrote:
 I had upgraded the OS from debian etch to debian lenny yesterday.  I was 
 successfully running a build from backports.org
 which seems vey close to the lenny package.

 After the aptitude update  aptitude safe-upgrade bacula does not seem to 
 be using my previous bacula db.  The db exists,
 and i was able to browse the tables and verify all is still there (with 
 phpmyadmin). I have also verified that the db config
 is correct /etc/bacula/bacula-dir.conf.

 Any ideas why bacula isn't seeing the previous db info? (eg job history, 
 volumes, etc. etc)

 hostname:~/bacula# grep user /etc/bacula/bacula-dir.conf
  dbname = bacula; DB Address = 127.0.0.1; user = bacula; password = 
 XXX


 # Versions prior to upgrade
 bacula-director-mysql/etch uptodate 2.4.4-1~bpo40+1
 bacula-client/etch uptodate 2.4.4-1~bpo40+1
 bacula-console-qt/etch uptodate 2.4.4-1~bpo40+1
 bacula-sd/etch uptodate 2.4.4-1~bpo40+1
 bacula-fd/etch uptodate 2.4.4-1~bpo40+1
 bacula-sd-mysql/etch uptodate 2.4.4-1~bpo40+1
 bacula-director-common/etch uptodate 2.4.4-1~bpo40+1
 bacula-common/etch uptodate 2.4.4-1~bpo40+1
 bacula-doc/etch uptodate 1.38.11.1-3
 bacula-server/etch uptodate 2.4.4-1~bpo40+1
 bacula-console/etch uptodate 2.4.4-1~bpo40+1


 # Versions after upgradebacula/lenny uptodate 2.4.4-1
 bacula-client/lenny uptodate 2.4.4-1
 bacula-common/lenny uptodate 2.4.4-1
 bacula-console/lenny uptodate 2.4.4-1
 bacula-director-common/lenny uptodate 2.4.4-1
 bacula-director-sqlite3/lenny uptodate 2.4.4-1
 
 I don't know anything about debian or debian-spesific bacula packages, but 
 the package name above made me wonder if your bacula installation tries to 
 use the correct database at all? Before upgrade there were only 
 mysql-related packages, but now you have a bacula director package that 
 smells a little bit of sqlite?
 
 
 bacula-fd/lenny uptodate 2.4.4-1
 bacula-sd/lenny uptodate 2.4.4-1
 bacula-sd-mysql/lenny uptodate 2.4.4-1
 bacula-server/lenny uptodate 2.4.4-1
 bacula-traymonitor/lenny uptodate 2.4.4-1



I fingered it out.

The Debian meta package bacula-director uses sqlite as the database backend by 
default.  I was previously useing mysqld as
the backend.  After I uninstalled bacula-director-sqlite3 and re-installed 
bacula-director-mysql, all was peachy once again.

.sneaky package maintainers ;)





--
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] purging data on full disk devices

2008-10-09 Thread Terry L. Inzauro
John Drescher wrote:
 Terry L. Inzauro wrote:
 is there a document that outlines the steps necessary to purge 'older' data 
 on a disk device that is
 full? i understand that my retention levels are not correct, but i wish to 
 purge data at my
 discression until i get it all figured out.
 You can purge entire volumes only, not select data. If you wish to only
 purge some data, you need to have multiple volumes and use them in a
 rotation.

 A word of advice, limit your volume size to 1/10 to 1/20th (or even
 more) of the size of your disk array so that proper volume management
 has a chance to work. Having only a few giant volumes does not play
 well with complex schedules and retention periods.
 
 John
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 Bacula-users mailing list
 Bacula-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/bacula-users

yes, i am seeing that now. thank you for the tip. i was actually
trying to setup volumes based on backup type (full, diff, inc) in
combination with clients. so client1 wold have a volume client1_fulls,
client1_diffs, and client1_incs, but i can't seem to get it working
properly.  i was 'trying' to set it up that way so in the event that i
run into this very same situation, then i would be able to purge
backups of a specific type for only one client and backup type (eg.
purge all of client1_incs) as not to affect the others.

is this setup similar to what you are trying to convey?


best regards,

_Terry



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] purging data on full disk devices

2008-10-07 Thread Terry L. Inzauro
is there a document that outlines the steps necessary to purge 'older' data on 
a disk device that is
full? i understand that my retention levels are not correct, but i wish to 
purge data at my
discression until i get it all figured out.


regards,

_Terry



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Using bacula over Internet

2008-01-03 Thread Terry L. Inzauro
Dan Langille wrote:
 [EMAIL PROTECTED] wrote:
 Hello

 I wish to know what is the most secure solution for using bacula over the
 internet.

 I have seen bacula is able to use tls connection and tcp-wrappers. Is this
 solution strong enough ?
 
 Strong-enough is hard to define.  It is at least as strong as https, 
 which is used for many things, including financial transactions.
 
   Is there a more secure solution ?
 
 None easily available.  Security is a trade off between risk and 
 convenience.  It's secure enough for what I do.  I can't tell you if 
 it's secure enough for what you do.  Only you can decide that.
 
 It is possible to use ssh tunnel, but it is really painfull to administrate 
 on a
 large number of machines.
 
 TLS will be at least as secure as ssh.
 



http://openvpn.net is your friend in a time of need.of security, that is.



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


Re: [Bacula-users] Volume recycle

2007-12-12 Thread Terry L. Inzauro
Robert Eaton wrote:
 I have a simple volume recycle problem.  I’ve searched posts and see
 similar problems but have not found the answer.
 
  
 
 I have a small system that backs up to a external USB hard drive.  I
 can’t get bacula to overwrite/reuse a volume name on the physical device.
 
  
 
 Details:
 
 Pool {
 
   Name = RKSBackup
 
   PoolType = Backup
 
   Recycle = yes
 
   AutoPrune = yes
 
   VolumeRetention = 7 days
 
   RecycleOldestVolume = yes
 
   PurgeOldestVolume = yes
 
   Volume Use Duration = 6 days
 
   LabelFormat = Week-
 
 }
 
 I recycle my backups every 4 weeks.  My backup volumes are
 Week-1,Week-2...Week-4.
 
 At then end of Week-1 the next volume (Week-2) will be used and they
 just keep rotating this works perfect.
 
 Problem:
 
 If there is not enough physical room on the USB hard drive to finish a
 backup or start a new one then I’m prompted to mount a new volume.  The
 only way I’ve found to get around this problem is to manually delete the
 oldest volume from the USB hard drive.  I thought that is what the
 Recycle and AutoPrune parameters would do.  Looks like these parameters
 update the catalog but they don’t physically remove the data from the
 backup drive.  How do I tell Bacula to overwrite the actual data on the
 backup device?
 
  
 
 Thanks,
 
 Robert
 
  
 


i've got the same problem...if you want to call it
a problem.  the bacula docs state bacula will
attempt to keep the data as long as friggn
possible (for obvious reasons). if any of the
criteria for recycling is not met, then the volume
will not get purged(overwritten)..i think. its
also worth noting that :

Automatic recycling of Volumes is performed by
Bacula only when it wants a new Volume and no
appendable Volumes are available in the Pool

i imagine that i/we will have to get creative with
the appropriate directives to get it to do what we
want based on the info here.  i'll continue to
re-read this page in hopes of resolving this
unwanted behavior.

http://www.bacula.org/rel-manual/Automatic_Volume_Recycling.html

i have not (as of yet) found a way to force the
volume to be (automagically) purged. based on one
or two criteria.


 best regards,


_Terry



-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users