[Bacula-users] Re: [Bacula-devel] Patch : adding options on wait command (bconsole)

2006-02-27 Thread Eric Bollengier
Hi, 3. The Job (a unique identifier for a job that runs). The Job looks something like kernsave.2006-02-25_12.38.07. I.e. it is a combination of the Job Name and the date/time the job ran. No two jobs start at the same time, so it is unique -- providing you never use the same JobName in a

[Bacula-users] Re : SQL help needed predicting next tapes to recycle

2006-08-05 Thread Eric Bollengier
Hi, You can find informations about that on bacula manual http://bacula.org/dev-manual/Automatic_Volume_Recycling.html#SECTION000243000 You can try this (change Pool.Name and MediaType) SELECT Media.VolumeName AS volumename, Media.VolStatus AS volstatus,

Re: [Bacula-users] Re : SQL help needed predicting next tapes to recycle

2006-08-05 Thread Eric Bollengier
On Sat, Aug 05, 2006 at 02:58:01PM +0200, Eric Bollengier wrote: FROM_UNIXTIME( UNIX_TIMESTAMP(Media.LastWritten) + (Media.VolRetention) ) AS expire Or, if you're using Postgres rather than MySQL... lastwritten + volretention * interval '1 second

Re: [Bacula-users] Client Run Before Job question

2006-08-11 Thread Eric Bollengier
Hi, I haven't tried this yet, but I figured I'd ask. Is it possible to have multiple Client Run Before Job options for the Job directive? This is implemented in version 1.39 with RunScript feature. Bye - Using Tomcat but

Re: [Bacula-users] [Bacula-devel] Bacula favicon

2006-09-26 Thread Eric Bollengier
http://bacula.cvs.sourceforge.net/*checkout*/bacula/gui/bweb/html/favicon.ico you can use this Bye Le mardi 26 septembre 2006 18:40, Dan Langille a écrit : Do we have a Bacula favicon? I think not. Does someone want to create one? I think the little bat is a good place to start.

Re: [Bacula-users] Questions regarding bacula from a potential user

2006-12-18 Thread Eric Bollengier
Also, I noticed in the current limitations that 4 billion files is the limit per database? (this would I assume be per director then in reality if they used different databases?) Actually, it's per-database catalog. This is because most databases use 32 bit int for IDs. You can use bigint

Re: [Bacula-users] Questions regarding bacula from a potential user

2006-12-18 Thread Eric Bollengier
I'm surprised, but delighted, to find it's that simple. That's a sign of a well-written application. All bacula's code is using 64bit functions for FileId_t (ie edit_uint64() or str_to_int64()) Would this work with MySQL and SQLLite as well? (Don't know if MySQL has a 64-bit int or not?)

Re: [Bacula-users] Restore Remote via SSH with one job only

2007-01-03 Thread Eric Bollengier
Hi, You have found a bug, i think we can correct this with this patch : --- my/src/dird/ua_run.c2006-12-30 16:36:37.0 +0100 +++ cvs/src/dird/ua_run.c 2007-01-03 20:23:43.0 +0100 @@ -467,6 +467,7 @@ jcr-pool = pool; set_rwstorage(jcr, store); jcr-client =

Re: [Bacula-users] bweb - print() on closed filehandle GEN0 at...]

2007-01-18 Thread Eric Bollengier
Kern Sibbald schrieb: I've now installed bweb on a second machine, and have never run into a problem like you describe. Perhaps Eric will have some idea on this, but one piece of advice that I just got from Eric regarding a problem I had is to always look in the Apache error_log when

Re: [Bacula-users] bweb - print() on closed filehandle GEN0 at...]

2007-01-19 Thread Eric Bollengier
If I then select VU0EM005 add click on 'Status', I immediately get this error again: http://vu0em005/cgi-bin/bweb/bweb.pl?client=VU0EM005action.x=23action.y=1 9action=client_status [Fri Jan 19 17:35:01 2007] [error] [client 53.60.5.110] print() on closed filehandle GEN0 at

Re: [Bacula-users] bweb - print() on closed filehandle GEN0 at...]

2007-01-20 Thread Eric Bollengier
client :\n; $c-send_cmd(status client=VU0EM004); ---8---8---8--- It could be also a good idea to open a bug on bugs.bacula.org. Bye Le Samedi 20 Janvier 2007 00:15, Ralf Gross a écrit : Eric Bollengier schrieb: If I

Re: [Bacula-users] feature request: add option to assign purged volumes to Scratch pool

2007-02-08 Thread Eric Bollengier
Hi, This have been implemented. see bacula/patches/testing/scratch.readme It will be commited in main trunk soon. Bye Item 1: add option to assign purged volumes to Scratch pool - Using Tomcat but need to do more?

[Bacula-users] RunClientAfterJob behavior in bacula 2

2007-02-08 Thread Eric Bollengier
Hello, When I recently upgraded to 2.0 I found out the hard way that the RunClientAfterJob directive semantics changed quite a bit with the new version: while in 1.38 the script was run after all activities requiring a connection with the client were over (including data and attribute

Re: [Bacula-users] RunClientAfterJob behavior in bacula 2

2007-02-08 Thread Eric Bollengier
Hi, When I recently upgraded to 2.0 I found out the hard way that the RunClientAfterJob directive semantics changed quite a bit with the new version: while in 1.38 the script was run after all activities requiring a connection with the client were over (including data and attribute

[Bacula-users] Files modified during backup

2007-02-08 Thread Eric Bollengier
Hi, Is bacula aware about files modified during backup ? (like log or open database files) I never see thing like that in my log : Warning /var/log/syslog have been modified during backup Bye - Using Tomcat but need to do

Re: [Bacula-users] Questions re: mysql optimization, bweb/brestore, and locked drives

2007-02-14 Thread Eric Bollengier
Hi, 2) bweb- When adding an autochanger into bweb, it references a Location object (nowhere else in the Bacula documentation references such an object)- At this time, only bweb is using locations. my attempts to create a Location object have failed (although I can interact with the DB

Re: [Bacula-users] bweb Bconsole Error Message

2007-02-18 Thread Eric Bollengier
Hi, I have bweb running and can view jobs as well as change the configuration file in /etc/bacula/bweb.conf. However when I try to use a command through bweb it doesn't work. I suspected it was bconsole and did some searching through the support archives. I ran across a test.pl to verify

[Bacula-users] Re : Files modified during backup

2007-02-18 Thread Eric Bollengier
Hi, Is bacula aware about files modified during backup ? (like log or open database files) I never seen thing like that in my log : Warning /var/log/syslog have been modified during backup Bye I have wrote a small patch to add this feature to bacula. you can find it on the current svn

Re: [Bacula-users] RunBeforeJob variable expansion

2007-02-20 Thread Eric Bollengier
Hi, I'm working on writing a perl script that will backup volumes in my AFS cell by dumping them to a NFS share. I'm running this as a RunBeforeJob script using some of the variable expansion features of bacula to fill in the arguments to the script. I have a question regarding the

Re: [Bacula-users] Cleaning up database records

2007-02-20 Thread Eric Bollengier
I wasn't aware that it was important to run dbcheck at certain intervals. So I sat it up about 8 hours ago. It showed 4919334 orphaned file records and it is now deleting them. How long time is it supposed to take? It has now been deleting for almost 8 hours and mysqld takes about 85% of the

Re: [Bacula-users] RunBeforeJob variable expansion

2007-02-20 Thread Eric Bollengier
I could not find any definitive answer in the manual and couldn't find it right away when looking at the source. Also is there any timeframe of when (or even if) the format of the timestamp will be user configurable? I saw some comments in lib/ btime.c about it and I for one would

Re: [Bacula-users] Fifo Device

2007-02-24 Thread Eric Bollengier
I found the reason for that error in the source code: in file dev.c at line 385 bacula tries to rewind the fifo Thanks, it's ok in 2.0.x and 2.1.x now. But now I face the next problem. Restore by the fifo device doesn't work. I can restore when I use a file device. Therefore I backup

Re: [Bacula-users] minimum privileges for bweb

2007-02-25 Thread Eric Bollengier
Hi, firstofall, I'm just asking here for I'm not aware of a list dealing with bweb yet, and secondly most/all of it's users are going to read it here anyway. i'm currently setting up mysql permissions for bacula and bweb - does anyone know if bweb only needs readonly permissions and does

Re: [Bacula-users] [Bacula-devel] FOSDEM

2007-02-27 Thread Eric Bollengier
if you want to see kern in action ! http://ftp.belnet.be/mirrors/FOSDEM/2007/FOSDEM2007-Bacula.ogg (you can use vlc to see this presentation vlc http://ftp.belnet.be/mirrors/FOSDEM/2007/FOSDEM2007-Bacula.ogg) bye Le Lundi 26 Février 2007 18:36, Kern Sibbald a écrit : On Friday 23 February

Re: [Bacula-users] Experience with brestore.pl

2007-03-17 Thread Eric Bollengier
Hi, Which version of brestore/bacula are you using ? On Saturday 17 March 2007 02:22, Lonny Selinger wrote: Still playing around. I managed to get brestore loading etc but I'm not sure I'm doing it right. I have put brestore.pl and the brestore.glade file on my Master (director) with the

Re: [Bacula-users] Experience with brestore.pl

2007-03-18 Thread Eric Bollengier
Which version of brestore/bacula are you using ? bacula-2.0.3 and got brestore from bacual-gui of the same version On Saturday 17 March 2007 02:22, Lonny Selinger wrote: Still playing around. I managed to get brestore loading etc but I'm not sure I'm doing it right. I have put

Re: [Bacula-users] Experience with brestore.pl

2007-03-18 Thread Eric Bollengier
You can try this version, it fixes some mysql broken stuff http://bacula.svn.sourceforge.net/viewvc/*checkout*/bacula/trunk/gui/brestore/brestore.pl?revision=4356 You have to cleanup your database drop table brestore_missing_path; drop table brestore_pathhierarchy; drop table

Re: [Bacula-users] [Bacula-devel] Bacula release strategy.

2007-03-18 Thread Eric Bollengier
Hi, I'm considering the following ideas for the next couple of Bacula releases, and would like your ideas. 1. Release version 2.0.4 in the next week or two with a couple more bug fixes. 2. Release either version 2.0.5 or more likely version 2.2.0 within 4-8 weeks, targeting 6 weeks. ok

Re: [Bacula-users] [Bacula-devel] RunScript and RunAfter bug

2007-03-18 Thread Eric Bollengier
I discover problem with RunScript directive in version 2.0.2 and now in 2.0.3 too. I have next directive in Job resource: RunScript { RunsWhen = After RunsOnSuccess = yes Command = /etc/bacula/scripts/disk_check.sh %j } and the script disk_check.sh is following:

Re: [Bacula-users] [Bacula-devel] bweb InitCatalog?

2007-03-23 Thread Eric Bollengier
Hi, I have installed bweb from debian package (2.0.3-1); for the installation, I followed the notes in the INSTALL file and filled the config form shown at first run of bweb.pl. Now it mostly looks ok, however I have a few questions/notes: 1) I think I read somewhere that I should issue an

Re: [Bacula-users] [Bacula-devel] bweb InitCatalog?

2007-03-23 Thread Eric Bollengier
Le Vendredi 23 Mars 2007 09:19, MaxxAtWork a écrit : Database size works only with mysql 5 and postgresql. To activate it with mysql5 see INSTALL POSTGRESQL AND MYSQL5 NOTES Ok, I see. In debian package it wasn't there... I have now Bweb.pm 4284 2007-02-28 19:49:08Z and the DB_SIZE macro

Re: [Bacula-users] [Bacula-devel] Releasing the new batch DB insert code

2007-03-23 Thread Eric Bollengier
This cause a database/system crash ? or a just a transaction rollback ? ... Le Vendredi 23 Mars 2007 17:03, Oliver Lehmann a écrit : Eric Bollengier wrote: It's the database job... I never seen a database (mysql, postgres or oracle) saying something like Sorry i'm out of memory. Database

Re: [Bacula-users] [Bacula-devel] Pruning and recycling volumes

2007-03-25 Thread Eric Bollengier
Hi, 1. Previous when Bacula needed a new Volume, it would prune *all* volumes in the current pool. Now it prunes only one at a time, until it finds one that has been Purged. This means that less pruning will be done, and database records will tend to remain longer (possibly much

Re: [Bacula-users] [Bacula-devel] Pruning and recycling volumes

2007-03-26 Thread Eric Bollengier
Le Lundi 26 Mars 2007 00:09, Kern Sibbald a écrit : On Sunday 25 March 2007 22:53, Eric Bollengier wrote: Hi, 1. Previous when Bacula needed a new Volume, it would prune *all* volumes in the current pool. Now it prunes only one at a time, until it finds one that has been Purged

Re: [Bacula-users] Bweb and brestore problem

2007-04-04 Thread Eric Bollengier
Hi, Hello I will try to give a more complete description of my problem : What I want to do : to have a Web interface which enable me to make backups, restore and supervise their execution. What I have done : install bweb following the INSTALL instructions. Bweb seems to work fine, i

Re: [Bacula-users] bweb database size field is ???

2007-04-10 Thread Eric Bollengier
Hi, i already hit some to the apparently more common errors - ( no ttf font set, no joblog-into-database setting ) and fixed these; now i'm left with one i really don't know where to fix. at the bweb status page there is a field called database size, which unfortunately only shows three

Re: [Bacula-users] sql error using brestore

2007-04-24 Thread Eric Bollengier
Hi, You are using an old version, please, update with svn or debian package. (see ReleaseNotes) Bye - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control

Re: [Bacula-users] bweb volume usage

2007-05-08 Thread Eric Bollengier
Hi, Just curious how this is calculated. The volume usage always shows 0% average even with data on the volume. I was just wondering if this was another option I needed to add to me existing config. Anyone? It takes the average size of Full media by MediaType and Pool SELECT

Re: [Bacula-users] Backup jobs hangs while running simultaniously

2007-05-14 Thread Eric Bollengier
Hi, We also have a problem with our PostgreSQL database. A full backup of our servers results in probably 50-70 GB of data, which is spooled quickly, but it takes about 12 hours of writing the metadata to the database. We tried to tune PostgreSQL, but had to turn off fsync to get the

Re: [Bacula-users] bweb - Update volume doesn't work on Debian etch

2007-05-24 Thread Eric Bollengier
Hi, Hello, I have upgraded our backup server to Debian etch a few days ago. Before this we were using sarge with hand-made packages of bacula 2.0 Now we are using the packages from sourceforge since they are made for etch. I have noticed that since the upgrade the update media operation

Re: [Bacula-users] pytho interface

2007-07-23 Thread Eric Bollengier
Hi, I would like to help improve the existing interface, but, the existing ones are too complicated e have too many graphics, javascript... Bweb use template for rendering html pages, you can wrote *your* backend without javascript or graphics. Just adapt all bweb/tpl/*.tpl files. this

Re: [Bacula-users] backing up MySQL databases

2007-07-30 Thread Eric Bollengier
Hi, What is the best way to backup MySQL databases? I've got a few web servers that i'd like to backup, which rely heavily on MySQL for offering dynamic content. Should i just backup the /var/lib/mysql/* directly? Does that mean i have to shutdown the MySQL process during the backup?

Re: [Bacula-users] How to fail job for script after job?

2007-08-02 Thread Eric Bollengier
Hi, I like to have the backup job to fail if the script which runs after the job had some problems. The AbortJobOnError seems not to work for the After script. How can I do that? My script has a exit 1 for a failure. For the Before script it works fine. This doesn't work at this time, we

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
Hi, It's why we provide the bwild tool... If you are using something special, you can validate your expression with this tool. I have run the testfnm regress tool from the glibc with the old bacula version, and more than one tests are failing... [ 3] a[/]b matches a/b - FAIL [ 5] * matches

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
On Monday 03 September 2007 19:12:12 Kern Sibbald wrote: On Monday 03 September 2007 18:44, Eric Bollengier wrote: Hi, It's why we provide the bwild tool... If you are using something special, you can validate your expression with this tool. I don't imagine that you were directing

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
glibc tests are better than before : [18] [/b matches [/b - FAIL To the best of my knowledge the following are not wildcard matches. If they are can you point me to the definition of [:alpha:]? [36] *[[:alpha:]]/*[[:alnum:]] does not match a/b - FAIL [37] *[![:digit:]]*/[![:d-d]

Re: [Bacula-users] problem with the run script option

2007-09-11 Thread Eric Bollengier
Hello everybody, We have a 1.38.11 bacula server and we use it to backup 60 clients on san disks environment. We want to use the runscript option on a job section. But, when we do it, we have the following error: Config error: Keyword RunScript not permitted in this resource. Perhaps

Re: [Bacula-users] [Bacula-devel] Problems with restoring

2007-09-19 Thread Eric Bollengier
Hi, This appears to be either some original bug or one introduced with the RegexWhere code. The pointer to the format string is NULL because it was never set correctly. I have seen, this little bug is present since 1.38... (and certainly before). This is reported as bug #955. The #955 bug

Re: [Bacula-users] [Bacula-devel] bacula-dir segfaults from bconsole invalid syntax

2007-09-20 Thread Eric Bollengier
Hi, I have seen what is wrong and i will fix it. Thanks On Thursday 20 September 2007 00:11:00 Arno Lehmann wrote: Hi, Short summary for forwarding to the -devel list: Bacula 2.2.4 DIR crashes on certain commands. This might be a command parser issue, I think. Arno 20.09.2007 00:02,,

Re: [Bacula-users] Bweb

2007-09-23 Thread Eric Bollengier
Hi, Ok I don't know if this is the right place to ask bweb questions but after I have failed to get the nice gui on to my mac os x I have changed to bweb I got it all working except one part. Jobs tell it to run a job the list is blank? Any clues? Have you read and follow INSTALL notes ? It

Re: [Bacula-users] bug 969 not fixed

2007-10-22 Thread Eric Bollengier
bug 969 shows as fixed in 2.2.5 but it is still broken for me as shown below. Hi, It seems that the 2.2.4-restore.patch doesn't have been applied to the 2.2.5 release. Read 2.2.4-replace.patch instead of 2.2.4-restore.patch. You can apply it yourself and rebuild the bacula-dir binary

Re: [Bacula-users] File table empty?

2007-10-29 Thread Eric Bollengier
Hi, 25.10.2007 18:25,, David Fix wrote:: Hey guys, I went to restore some of my data, but the file table is empty! I've never seen this before... The filename table has the filename I'm looking for, and the path table has the path of it... But there is NO data in the file table... And

Re: [Bacula-users] bacula-fd hangs on ClientRunAfterJob

2007-11-01 Thread Eric Bollengier
Hi, I added Client Run Before/After Job scripts to two backup jobs in order to stop/start mysql. But the After script seems to hang the bacula-fd. Using 'status dir', the bacula console shows a terminated status for these jobs, and the command 'list jobs' shows their status as 'R'. The

Re: [Bacula-users] bacula-fd hangs on ClientRunAfterJob

2007-11-02 Thread Eric Bollengier
On Thursday 01 November 2007 22:22:40 Dane Miller wrote: Eric Bollengier wrote: IHMO, i think that the script doesn't close stderr, stdout and stdin properly. Hey you're right! stderr is the culprit here. The following Client Run After Job script works around the problem: #!/bin/sh

Re: [Bacula-users] Problem with ClientRunBeforeJob command on Win32

2007-11-19 Thread Eric Bollengier
Hi, All, I am having a hard time correctly configuring a job to run before a client backup on a Win32 host. I believe its just incorrect syntax or encapsulation in the bacula-dir.conf file. Was hoping someone could tell me how to correct this quickly. Here is the error 'C:/Program' is

Re: [Bacula-users] BWEB problem (installed fine, config seems good, but some things doesn't work)

2007-11-29 Thread Eric Bollengier
Hello all, I have a problem with bweb (Bacula version 2.2.6, bweb version 2.2) I successfully installed it on Slackware 12 (followed the installation instructions), and it runs fine on http://slackware/bweb. Shows information about clients, volumes, but some things doesn't work. For

Re: [Bacula-users] [Bacula-devel] patch for Bacula bug 1016 - Re: DVD data not getting written to DVD

2007-11-29 Thread Eric Bollengier
Hi, Thanks for this patch, it was applied to the trunk, and uploaded to sourceforge. Bye On Wednesday 28 November 2007 23:08:39 Richard Mortimer wrote: Hi Kern, Please find attached my patch that fixes Bacula bug 1016. Scott Simpson has tested the patch and reports that it fixes the issue

Re: [Bacula-users] Postgresql encoding problem after migration to Bacula 2.0.3

2008-01-05 Thread Eric Bollengier
Hi, If your are using PostgreSQL with UTF8, Postgres will check all input to see if they are valid UTF8. If your client is in ISO885X, you will not be able to store filename with accent in your catalog. To be able to store anything, you have to use SQL_ASCII (the name could be confusing)

Re: [Bacula-users] Problem: deleted files entrys are still in the database and are restored

2008-01-11 Thread Eric Bollengier
But this bug renders the incremental backups (almost) useless... This is not a bug at all. This is a common characteristic of many backup systems. well, ok, this limitation renders the incremental backups (almost) useless. Why not run a command like 'find . -type f file_list' and

Re: [Bacula-users] Problem: deleted files entrys are still in the database and are restored

2008-01-11 Thread Eric Bollengier
Hi, Dan Langille wrote: Vladimirs Vecgailis wrote: As it stands at http://www.bacula.org/?page=projects the date, when this item/limitation was noted/registered was the 28 November 2005 and is now the Item 1 on the project-list. Maybe you know how is the stand at the moment? To my

Re: [Bacula-users] Salon Solutions Linux in Paris - BaculaSystems

2008-01-26 Thread Eric Bollengier
Hi, I saw that there will be Baculasystems in Paris next week. Who knows who's founded this company? Hi, I think that you can get informations here http://www.mail-archive.com/search?q=professional%20support[EMAIL PROTECTED]start=0 Bye

Re: [Bacula-users] Salon Solutions Linux in Paris - BaculaSystems

2008-01-27 Thread Eric Bollengier
On Sunday 27 January 2008 16:29:14 Tilman Schmidt wrote: Am 26.01.2008 19:50 schrieb Eric Bollengier: I saw that there will be Baculasystems in Paris next week. Who knows who's founded this company? I think that you can get informations here http://www.mail-archive.com/search?q

Re: [Bacula-users] Restore over Bweb?

2008-01-31 Thread Eric Bollengier
Hello, I'm looking for an easy to use restore-routine for my customer. So that he can do the restore himself. Is there something like that? Maybe even something that integrates into Bweb? Matthias Hi Matthias, SVN version of bweb (quite stable, but catalog schema will change a bit in

[Bacula-users] Increase DeSpooling Speed.

2008-02-20 Thread Eric Bollengier
Hello, We have a LTO-3 Ultrium Tape Library.Bacula 2.2.7 is implemented in SLES 9. The despooling speed to the tape is 7.8 MB/sec always, even with hardware compression and no hardware compression. Is it possible to increase the despooling speed. Hi, My LTO-3 writes at 140MB/s with

Re: [Bacula-users] [Bacula-devel] Patches

2008-10-25 Thread Eric Bollengier
Le Saturday 25 October 2008 13:41:15 Ulrich Leodolter, vous avez écrit : On Sat, 2008-10-25 at 11:32 +0200, Kern Sibbald wrote: Hello, For some time now, I haven't really been happy with the Bacula patch procedure. Basically, when we fix a bug (either from a bug report or ourselves), we

[Bacula-users] Fwd: Re: [Bacula-devel] Fwd: 64bit for File.FileId

2008-11-07 Thread Eric Bollengier
Hello, We have a patch for that, this is scheduled for the 3.0.0 version. trunk/patches/testing/fileid64.patch Modifications are quite simple (postgresql part) BEGIN; ALTER TABLE file ALTER fileid TYPE bigint ; ALTER TABLE basefiles ALTER fileid TYPE bigint; COMMIT; The serial counter doesn't

Re: [Bacula-users] Postgres functions for interpreting the bacula LStat column

2008-12-19 Thread Eric Bollengier
Le Friday 19 December 2008 20:15:37 David Lee Lambert, vous avez écrit : The advantage of a C stored procedure is speed: Yes, for sure but it's also a bit more complex to install... To speedup things (for reading), it's also possible to create an index (i will add the IMMUTABLE parameter) Bye

Re: [Bacula-users] [Bacula-devel] Manual Volume recycling and overwritten data

2009-01-13 Thread Eric Bollengier
Hello Bastian, Le Tuesday 13 January 2009 14:27:49 Bastian Friedrich, vous avez écrit : when manually recycling a (used) volume with update volume=xxx VolStatus=Recycle this volume will be accepted for overwriting. Nonetheless, Jobs that have been written to that volume will NOT be removed

Re: [Bacula-users] [Bacula-devel] Implementation of running Job speed limit.

2009-01-29 Thread Eric Bollengier
Hello, Le Thursday 29 January 2009 14:59:38 Alex F, vous avez écrit : Item 1: Implementation of running Job speed limit. Origin: Alex F, alexxzell at yahoo dot com Date: 29 January 2009 What: I noticed the need for an integrated bandwidth limiter for running jobs. It would be very useful

Re: [Bacula-users] [Bacula-devel] Feature Request: Data encryption

2009-02-04 Thread Eric Bollengier
Hello, And why not use an encrypted filesystem to store your media ? One major advantage, it's already there and can be functionnal in 30mins, an other advantage, is that a simple cp permit to crypt old backups. Bye Le Tuesday 03 February 2009 16:33:21 Tobias Barth, vous avez écrit : Hi,

Re: [Bacula-users] [Bacula-devel] Delete volume on purge

2009-02-16 Thread Eric Bollengier
Hello, What is the difference with item 6 of the current project file ? Bye Le Monday 16 February 2009 11:02:34 Alex F, vous avez écrit : Item 1. Delete volume on purge. Origin: Alex F, alexxzell at yahoo dot com Date: 16 February 2009 What: A feature that would permit Bacula to delete a

Re: [Bacula-users] vtape size limit

2009-05-10 Thread Eric Bollengier
Le Sunday 10 May 2009 17:17:22 Shad L. Lords, vous avez écrit : ebollengier wrote: Vtape is used only for test purpose, and the maximum size is defined at the compilation time (see vtape.h). Thanks for the tip. I do see where it is defined by default to be 20G. If this is only to be used

Re: [Bacula-users] [Bacula-devel] Documentation and translations

2010-01-07 Thread Eric Bollengier
Hello Timo, Le mercredi 06 janvier 2010 19:19:38, Timo Neuvonen a écrit : I don't know the exact situation in the newest documentation, but very recently there still were quite an amount of notes like this feature works since version 1.38. While the current version number starts with 3, and

[Bacula-users] Fwd: [IMPORTANT] Re: Bugs: Action On Purge = Truncate

2010-01-27 Thread Eric Bollengier
Hello Graham, Unfortunately, it appears that the ActionOnPurge feature is *broken* and *dangerous*. The usage of this command should be avoided in any cases! We will try to fix it for the next release, but the amount of work is very important. I will update the manual in this way, and the

Re: [Bacula-users] show pool command does not display correct Job/File Retention

2010-04-28 Thread Eric Bollengier
Hello Yuji, Show pool command does not display correct value for Job and File Retention even they are defined in a pool resource. I took a look at a source file (dird_conf.c ) of both 5.0.0 and 5.0.1, and it seemed that the retention periods referred directives of a client resource. Or am I

Re: [Bacula-users] [Bacula-devel] Bacula 5.0.2 released

2010-04-29 Thread Eric Bollengier
Le jeudi 29 avril 2010 10:46:07, Matija Nalis a écrit : On Wed, Apr 28, 2010 at 07:23:07PM +0200, Kern Sibbald wrote: This is to let you know that Eric has released the tar.gz source files and the Windows binaries to the Bacula section of the Source Forge download area. This 5.0.2

Re: [Bacula-users] Bat displays a wrong Volume usage percent

2010-04-30 Thread Eric Bollengier
Hello, Le vendredi 30 avril 2010 16:03:42, Niccolo Rigacci a écrit : Hello to all, I'm starting to use Bacula and I already have a question. The Vol Usage displayed by bat into the Media window is wrong. I have an LTO-4 tape library (800 Gb each tape), but bat assume something about 559.56

Re: [Bacula-users] Bacula tape format vs. rsync on deduplicated file systems

2010-05-28 Thread Eric Bollengier
Le vendredi 28 mai 2010 16:42:01, Robert LeBlanc a écrit : On Fri, May 28, 2010 at 12:32 AM, Eric Bollengier eric.bolleng...@baculasystems.com wrote: Hello Robert, What would be the result if you do Incremental backup instead of full backup ? Imagine that you have 1% changes by day

Re: [Bacula-users] New Features?

2010-07-11 Thread Eric Bollengier
Hello, Le dimanche 11 juillet 2010 01:50:25, Robert LeBlanc a écrit : We are running 5.0.2 and my VirtualFulls are failing saying that it can't read from the destination pool. At http://www.bacula.org/5.1.x-manuals/en/main/main/New_Features_in_5_0_0.html (the 5.1.x manual link from the

Re: [Bacula-users] [Bacula-devel] Feature request: dir-name as a parameter to bconsole

2010-07-14 Thread Eric Bollengier
Hello, Le mercredi 14 juillet 2010 16:20:18, Olaf Zevenboom a écrit : Item x (new): add the ability to pass a director-name to bconsole on start of bconsole Date: 14 july 2010 Origin: Olaf Zevenboom (olaf at artefact dot nl) Status: This feature has been implemented few months ago in the

Re: [Bacula-users] restore / slow directory tree build process on 5.0.x / mysql

2010-07-19 Thread Eric Bollengier
Hello Nick, This issue has been discussed few months ago, you can get advise by searching on mailing list or on the wiki. http://wiki.bacula.org/doku.php?id=faq#restore_takes_a_long_time_to_retrieve_sql_results_from_mysql_catalog Bye Le lundi 19 juillet 2010 13:04:23, Nick Hilliard a écrit :

Re: [Bacula-users] bconsole -n

2010-09-09 Thread Eric Bollengier
Hello James, On Thursday 09 September 2010 06:43:23 James Harper wrote: bconsole says that the -n option is for 'no conio' but it still prints stuff to the console, which isn't what I expected. Is the -n supposed to make it silent? No, it just skips conio calls for scripts that use Expect. To

Re: [Bacula-users] Understanding purge

2010-11-18 Thread Eric Bollengier
Hello Blake, Le jeudi 18 novembre 2010 00:30:16, Blake Dunlap a écrit : Basicly what I see here is that you really want a migration, not a copy job. This coupled with the patch from http://www.mail-archive.com/bacula-de...@lists.sourceforge.net/msg04724.html should do what you want if you set

Re: [Bacula-users] incremental backups too large

2011-01-15 Thread Eric Bollengier
Hello, Now the bit that is particularly interesting to me is: * FD Bytes Written: 40,119,463,364 (40.11 GB)* * SD Bytes Written: 256,785,265 (256.7 MB) * Nothing has been written to the FD. FD was being read during the backup time only. And the amount shown as SD Bytes

Re: [Bacula-users] incremental backups too large

2011-01-15 Thread Eric Bollengier
Le samedi 15 janvier 2011 15:27:48, Bart Swedrowski a écrit : On 15 January 2011 14:12, Eric Bollengier eric.bolleng...@baculasystems.com wrote: It sounds to be a bug when the FileDaemon is computing the checksum of the file, it updates the Bytes Written counter when it shouldn't

Re: [Bacula-users] usb LTO4/5 tape

2011-02-08 Thread Eric Bollengier
Hello, Le mardi 08 février 2011 17:06:22, Phil Stracchino a écrit : On 02/08/11 09:20, Alessandro Bono wrote: Hi all I need an LTO4 or LTO5 tape with usb interface, someone know a similar beast? So what you've got to ask yourself is, do you feel lucky? Well, do ya ... punk? Full

[Bacula-users] Moving Git repository on bacula.org

2011-03-02 Thread Eric Bollengier
Hello, After the recent SourceForge security issues, and the fact that the site is often very slow, we have decided to move the Bacula git source repositories to our UK bacula.org server (hosted by UKFast). You can clone the new repositories using the following commands: $ git clone

Re: [Bacula-users] Moving Git repository on bacula.org

2011-03-14 Thread Eric Bollengier
Hello Bruno, On 03/13/11 18:56, Bruno Friedmann wrote: On 03/02/2011 06:50 PM, Eric Bollengier wrote: Hello, After the recent SourceForge security issues, and the fact that the site is often very slow, we have decided to move the Bacula git source repositories to our UK bacula.org server

Re: [Bacula-users] Performance options for single large (100TB) server backup?

2011-07-06 Thread Eric Bollengier
Hello, On 07/06/2011 04:20 PM, Florian Heigl wrote: Saving multiple streams is something that has been proven as a solution for many years, and where that is still too slow NDMP comes into place. (in case of ZFS NDMP is still at a unusable stage) 100TB is a lot, but I wonder if everyone

Re: [Bacula-users] Avoid duplicate files

2011-09-15 Thread Eric Bollengier
Hello Rodrigo, On 09/15/2011 06:54 PM, Rodrigo Renie Braga wrote: Sorry, I really wasn't clear enough... What I meant was that, in case of a Full Backup of a FileServer running Samba (which is my case), there are SEVERAL files on that server that are the same, they are just coped on several

Re: [Bacula-users] Purge Log table - was: Re: Restore performance

2011-09-22 Thread Eric Bollengier
Hello, Great information Chris , thank you! However Marcio setup seems to show that the Log table is not purged as expected. I have checked on my setup too and while I have almost 2000 rows in y Log table, I have only 150 entries in the Job table. Having 10 lines of log per job is not

Re: [Bacula-users] Data spooling for migration jobs?

2011-12-03 Thread Eric Bollengier
Hello, On 02/12/2011 03:15, Pierre Bernhardt wrote: Is it possible to have an Spool Data directive for migrating jobs? Of course, you can control the SpoolData directive per job, and enable it in the migration job definition. It will apply to all jobs that are spawned. Bye -- Need

Re: [Bacula-users] SW compression now enabled by default in Differential backups?

2011-12-09 Thread Eric Bollengier
Hello, On 12/08/2011 01:29 PM, Andreas Koch wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I noticed lines such as ... FD Files Written: 965 SD Files Written: 965 FD Bytes Written: 1,251,958,893 (1.251 GB) SD Bytes Written:

Re: [Bacula-users] brestore vs version browser

2011-12-13 Thread Eric Bollengier
Hello, On 13/12/2011 11:30, Silver Salonen wrote: I'm just taking a look at new Bat (5.2.2) and I can't figure how to process out my most common use-case of Version Browser in bRestore. Let's say a user messed up a file and asked me which versions of the file are available in backups. In

Re: [Bacula-users] brestore vs version browser

2011-12-13 Thread Eric Bollengier
Hi, On 13/12/2011 13:54, Silver Salonen wrote: Yes, I can see the list of jobs, but the list is of all the individual jobs (incremental, differential etc.), not a logical set of all jobs configured for the FD. And the problem is that although I know which job has the file/folder, I don't know

Re: [Bacula-users] brestore vs version browser

2011-12-13 Thread Eric Bollengier
On 13/12/2011 14:40, Silver Salonen wrote: On 13.12.2011 15:24, Eric Bollengier wrote: Hi, On 13/12/2011 13:54, Silver Salonen wrote: Yes, I can see the list of jobs, but the list is of all the individual jobs (incremental, differential etc.), not a logical set of all jobs configured

Re: [Bacula-users] Bacula 5.2.4 Major problems with Warnings jobs not added to catalog etc

2012-01-23 Thread Eric Bollengier
Hello Stephen, On 23/01/2012 09:08, Stephen G Carr wrote: Dear All Have anyone had similar problems with 5.2.4 with backup warnings - the MAJOR problem seems that the Backup is NOT added to the catalog and as I backup clients to disc and migrate full backups to tape I suspect these jobs

Re: [Bacula-users] Bacula 5.2.11: Director crashes

2012-09-13 Thread Eric Bollengier
Hello Stephen, On 09/12/2012 09:39 PM, Stephen Thompson wrote: We updated our bacula server from 5.2.10 to 5.2.11 earlier today. A few hours later the bacula-dir crashed. This is on RedHat 6.3. No traceback generated. Marco has founded the problem and he has pushed a fix in the git

Re: [Bacula-users] limit bandwidth during backup job

2014-05-22 Thread Eric Bollengier
Hello, On 05/21/14 15:52, Steven Haigh wrote: On 21/05/14 23:27, kamran ayub wrote: Dear team, Please help me out in limiting bandwidth speed of backup jobs of client metioned in director conf. The manual is a good start:

[Bacula-users] Next Bacula Admin I training course

2014-10-01 Thread Eric Bollengier
Hello, Just to let you know that Bacula Systems is organizing its next Admin I training session 28th, 29th and 30th of October, in Yverdon-les-Bains, Switzerland. The Administrator I Training Course is designed to help new or existing administrators of Bacula to acquire the knowledge they need

  1   2   3   >