[Bacula-users] Quantum LTO2 Ultrium CL400H Interne 200/400 GB compatible?

2006-05-17 Thread Ger Apeldoorn
Hi all!

I want to buy this tapeunit, but I need to know for sure if it'll work with 
bacula:
Quantum LTO2 Ultrium CL400H Interne 200/400 GB

Is anyone using this type or can you tell me if it'll work?

Many thanks,
Ger.



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problem with the list???

2006-05-23 Thread Ger Apeldoorn
Hi,

I'm an admin for a different sourceforge project. (botix.sf.net) 

Yesterday, I got a mailing from sourceforge that they are migrating their 
mailinglists to Mailman 2.1.8 (first major upgrade in four years)

That is probably the cause of these inconveniences that I've noticed too. 

Greetings,
Ger.


Op woensdag 24 mei 2006 06:37, schreef Robert W Hartzell:
> Ryan Novosielski wrote:
> > I have noticed a problem, yes. I get my own replies considerably later
> > than other messages on the list.
>
> Thats the same behavior that i have noticed lately. Thanks for
> confirming that I'm not the only one.
>
> --
> Robert
>
>
> ---
> All the advantages of Linux Managed Hosting--Without the Cost and Risk!
> Fully trained technicians. The highest number of Red Hat certifications in
> the hosting industry. Fanatical Support. Click to learn more
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users



---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Saving a list of jobs from bconsole

2006-05-24 Thread Ger Apeldoorn
Hi, 

Do you want to generate a list of files that was backupped or something?

I made the following Perl script to do that (of the last 200 jobs) and dump it 
to files. 
You can use the -f switch and feed it a jobname if you like.

%<
#!/usr/bin/perl
use Getopt::Easy;
get_options "f-name=", "usage => parsejoblist.pl [-f name]", "h";
my $outputdir="/home/ger/temp/jobs";
system("rm ". $outputdir."/*.txt");


my $inputfile = "";
# Lijst maken met jobs

$inputfile = "[EMAIL PROTECTED] $outputdir/joblista.txt w\n";
$inputfile .= "list jobs\n";
$inputfile .= "[EMAIL PROTECTED]";
$inputfile .= "quit\n";
open(OUTPUT, '>'.$outputdir.'/bacinput.txt');
print OUTPUT $inputfile;
close(OUTPUT);
system("bconsole -c /etc/bacula/bconsole.conf <$outputdir/bacinput.txt > 
/dev/null");

#Alleen laaste jobs meenemen
system("tail -n 200 $outputdir/joblista.txt > $outputdir/joblist.txt");
unlink($outputdir."/joblista.txt");

$file=$outputdir.'/joblist.txt';
open(FILE, $file);
@lines = ;
close(FILE);

foreach (@lines) {
@line = split(/\|/);
#print $O{name}, "naam\r\n";
if ((($O{name}) && (index($line[2], $O{name}) > 0)) || ($O{name} eq "")) {
if ((index($line[2], "BackupCatalog") < 0) && (index($line[5], "F") > 
0) && (index($line[3], "E") < 0)) {
print "Processing job: ", $line[2], "\n";
# print index($line[2], "BackupCatalog"), $line[2], "\n";
$line[1] =~ s/,//;#trailing
$line[1] =~ s/^\s+//; #en eerste spaties verwijderen
$line[2] =~ s/ +//g; #alle spaties verwijderen
$inputfile = "[EMAIL PROTECTED] \"".$outputdir."/$line[2].txt\" 
w\n";
$inputfile .= "llist files jobid=$line[1]\n";
$inputfile .= "[EMAIL PROTECTED]";
$inputfile .= "quit\n";
open(OUTPUT, '>'.$outputdir.'/bacinput.txt');
print OUTPUT $inputfile;
close(OUTPUT);
system("bconsole -c /etc/bacula/bconsole.conf 
<".$outputdir."/bacinput.txt >> /dev/null");
$grepcommand="egrep '/ +\\\| \*\$||JobId|[0-9],[0-9]|: \' 
".$outputdir."/$line[2].txt > ".$outputdir."/$line[2]folders.txt";
#print $grepcommand, "\n";
system($grepcommand);
system($grepcommand);
unlink("$outputdir/$line[2].txt");
#die("end");
}
}
}

unlink($outputdir."/joblist.txt");
unlink($outputdir."/bacinput.txt");

#Second stage, spit out the job configuration lists.
my $printlineflag = false;

$file='/etc/bacula/bacula-dir.conf';
open(CONFFILE, $file);
@lines = ;
close(CONFFILE);

foreach (@lines) {
if (index($_, "FileSet") eq 0){
$printlineflag = 1;
$fileset = "";
$jobname = "";
}

if ((index($_, "Name") > 0) && ($printlineflag)) {
$jobname = substr($_, index($_, "\"")+1, -2);
$jobname =~ s/ +//g;
}

$fileset .= $_ if ($printlineflag);

if (index($_, "}") eq 0) {
$printlineflag = 0;
$file=($outputdir."/".$jobname."_Jobdef.txt");
open(JOBDEF, ">".$file);
print JOBDEF "Job configuration for " . $jobname . "\n";
print JOBDEF $fileset;
close(JOBDEF);
#print $fileset;
}
}

%<

I realize this is probably overkill, but perhaps you can get something useful 
out of it.

Greetings,
Ger.



---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula install in Ubuntu 5.10

2006-05-30 Thread Ger Apeldoorn
Hi!

I just did this today, but then on ubuntu 6.06.

If you install the packages:
build-essential, mysql-server and gnome-devel (last if you want the gnome 
console)

and do the following configure:
./configure --enable-gnome --enable-tray-monitor --with-mysql 
--with-fd-password=[password] --with-sd-password=[password] 
--with-dir-password=[password] --enable-smartalloc

then it should work... (worked for me)

Greetings,
Ger.


Op dinsdag 30 mei 2006 14:17, schreef Danie:
> Hi all ,
>
> Busy with a new install in Ubuntu 5.10 , I first tried the apt-get way ,
> but the packages seems to be depreciated (1.36 I think) , so I opted to
> compile bacula from source however I'm having trouble with mysql.
>
> When I run the ./configure script (I used the example in the manual) all
> goes well up to the mysql where it complains about not finding the
> working directory :
>
> configure: error: Invalid MySQL directory /usr/include/mysql/ - unable
> to find mysql.h under /usr/include/mysql/
>
> now I check and mysql.h is in fact in this directory , please help as I
> am a bit stuck.
>
> TIA
>
> Daniel
>
>
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users



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


[Bacula-users] Error: You must specify a "use " command before continuing

2006-06-06 Thread Ger Apeldoorn
Hi!

I've reinstalled my system and copied the bacula database and configfiles of 
the previous installation.

Now I get in the tray monitor: "You must specify a "use " 
command before continuing"

Furthermore; i'm having difficulties restoring files:

%<
06-jun 10:13 beagle-dir: Start Restore Job RestoreFiles.2006-06-06_10.13.51
06-jun 10:13 beagle-sd: RestoreFiles.2006-06-06_10.13.51 Fatal error: 
acquire.c:109 Read open device "FileStorage" (/mnt/bacula) 
Volume "HDDWeekly02" failed: ERR=dev.c:450 Could not 
open: /mnt/bacula/HDDWeekly02, ERR=No such file or directory
%<

I'm still investigating this, but they are probably related...

Any ideas? The catalog name has not changed, the bacula version has gone up 
from 1.38.5 to 1.38.9.

As bacula is our primary (and only) means of backup, I'd be grateful for any 
help!!

Many thanks,
Ger.



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


Re: [Bacula-users] Error: You must specify a "use "command before continuing

2006-06-06 Thread Ger Apeldoorn
Hi Chris,

Thanks a lot for your reply!

I'm sorry to say that I cannot find where to put it. My Client resources were 
already configured with a Catalog = MyCatalog line.

Do I have to put it anywhere else?

Btw: I could not find any reference to this in the releasenotes

Many Thanks,
Ger.

On Tuesday 06 June 2006 11:37, you wrote:
> Hello Ger,
>
> it's in the release-notes... there is no more default-catalog
> since 1.38.6 (i think)...
>
> chris
>
>
> --
> "I sense much NT in you, NT leads to Blue Screen.
> Blue Screen leads to downtime, downtime leads to suffering. NT is the path
> to the darkside."
>
> - Unknown Unix Jedi
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf
> > Of Ger Apeldoorn
> > Sent: Tuesday, June 06, 2006 11:09 AM
> > To: bacula-users
> > Subject: [Bacula-users] Error: You must specify a "use
> > "command before continuing
> >
> > Hi!
> >
> > I've reinstalled my system and copied the bacula database and
> > configfiles of
> > the previous installation.
> >
> > Now I get in the tray monitor: "You must specify a "use
> > "
> > command before continuing"
> >
> > Furthermore; i'm having difficulties restoring files:
> >
> > %<
> > 06-jun 10:13 beagle-dir: Start Restore Job
> > RestoreFiles.2006-06-06_10.13.51
> > 06-jun 10:13 beagle-sd: RestoreFiles.2006-06-06_10.13.51 Fatal error:
> > acquire.c:109 Read open device "FileStorage" (/mnt/bacula)
> > Volume "HDDWeekly02" failed: ERR=dev.c:450 Could not
> > open: /mnt/bacula/HDDWeekly02, ERR=No such file or directory
> > %<
> >
> > I'm still investigating this, but they are probably related...
> >
> > Any ideas? The catalog name has not changed, the bacula
> > version has gone up
> > from 1.38.5 to 1.38.9.
> >
> > As bacula is our primary (and only) means of backup, I'd be
> > grateful for any
> > help!!
> >
> > Many thanks,
> > Ger.
> >
> >
> >
> > ___
> > Bacula-users mailing list
> > Bacula-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/bacula-users



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


Re: [Bacula-users] Network Error with FD during Backup

2006-06-08 Thread Ger Apeldoorn
Hi, 

Put this line in the FileDaemon part of your bacula-fd.conf file of the 
client:

  Heartbeat Interval = 15 seconds

Greetings,
Ger.


On Thursday 08 June 2006 15:28, Tyler Bannister wrote:
> I'm getting some strange failures when I try to backup computers over an
> ADSL line, everything runs ok for about 2 hours then I get:
>
> 07-Jun 22:31 my-dir: client.2006-06-07_20.30.00 Fatal error: Network error
> with FD during Backup: ERR=Connection reset by peer 07-Jun 22:31 my-dir:
> client.2006-06-07_20.30.00 Fatal error: No Job status returned from FD.
>
>
> This is the second client I've had this problem with and we can't find
> any network problems. About 300 megs of files were backed up before the
> backup suddenly terminated.



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


Re: [Bacula-users] Error: You must specify a "use "command before continuing

2006-06-13 Thread Ger Apeldoorn
Hi,

I've resolved the problem, but neglected to report in.. Sorry about that! :)

In bacula-dir.conf you have to find this section:

Console {
  Name = beagle-mon
  Password = "boguspwd"
  CatalogACL = MyCatalog <-- Add this line
  CommandACL = status, .status
}

Restart or reload the director and you'll be fine!

Greetings,
Ger.

PS: thanks rlafond for reminding me!


On Tuesday 06 June 2006 13:05, Ger Apeldoorn wrote:
> Hi Chris,
>
> Thanks a lot for your reply!
>
> I'm sorry to say that I cannot find where to put it. My Client resources
> were already configured with a Catalog = MyCatalog line.
>
> Do I have to put it anywhere else?
>
> Btw: I could not find any reference to this in the releasenotes
>
> Many Thanks,
> Ger.
>
> On Tuesday 06 June 2006 11:37, you wrote:
> > Hello Ger,
> >
> > it's in the release-notes... there is no more default-catalog
> > since 1.38.6 (i think)...
> >
> > chris
> >
> >
> > --
> > "I sense much NT in you, NT leads to Blue Screen.
> > Blue Screen leads to downtime, downtime leads to suffering. NT is the
> > path to the darkside."
> >
> > - Unknown Unix Jedi
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf
> > > Of Ger Apeldoorn
> > > Sent: Tuesday, June 06, 2006 11:09 AM
> > > To: bacula-users
> > > Subject: [Bacula-users] Error: You must specify a "use
> > > "command before continuing
> > >
> > > Hi!
> > >
> > > I've reinstalled my system and copied the bacula database and
> > > configfiles of
> > > the previous installation.
> > >
> > > Now I get in the tray monitor: "You must specify a "use
> > > "
> > > command before continuing"
> > >
> > > Furthermore; i'm having difficulties restoring files:
> > >
> > > %<
> > > 06-jun 10:13 beagle-dir: Start Restore Job
> > > RestoreFiles.2006-06-06_10.13.51
> > > 06-jun 10:13 beagle-sd: RestoreFiles.2006-06-06_10.13.51 Fatal error:
> > > acquire.c:109 Read open device "FileStorage" (/mnt/bacula)
> > > Volume "HDDWeekly02" failed: ERR=dev.c:450 Could not
> > > open: /mnt/bacula/HDDWeekly02, ERR=No such file or directory
> > > %<
> > >
> > > I'm still investigating this, but they are probably related...
> > >
> > > Any ideas? The catalog name has not changed, the bacula
> > > version has gone up
> > > from 1.38.5 to 1.38.9.
> > >
> > > As bacula is our primary (and only) means of backup, I'd be
> > > grateful for any
> > > help!!
> > >
> > > Many thanks,
> > > Ger.
> > >
> > >
> > >
> > > ___
> > > Bacula-users mailing list
> > > Bacula-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/bacula-users
>
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.



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


Re: [Bacula-users] 3 running processes of fd daemon.

2006-06-19 Thread Ger Apeldoorn
Hi,

As I've got a number of systems here, I thought I'd look how many processes 
there are on my systems:

Ubuntu 6.06 -> 1 process
Debian 3.1 -> 2 processes
Red Hat Enterprise Linux 2.1 -> 3 processes
Red Hat Enterprise Linux 3 -> 3 processes
Red Hat Enterprise Linux 4 -> 1 process

But what I dont understand: Why is it so bad to have a couple of (extra) 
processes running? If they are simply idle, they dont consume processor 
cycles and wont use any 'real' memory because they will be swapped to the 
harddisc.

IMHO it is not worth your time to dive into the source for investigation, not 
even close...

Greetings,
Ger.

Op dinsdag 20 juni 2006 03:11, schreef Norbert Murzsa:
> The -L equal to -m on RH 7.3
>
> Unfortunately: ps: error: Thread display not implemented.
>
> And I think I have three separate processes (as I have already told in
> my first letter), not threads.
>
> The output of a RHEL3/4 (I have one PID with two different LWPs):
> UIDPID  PPID   LWP  C NLWP STIME TTY  TIME CMD
> root 24365 1 24365  02 Jun15 ?00:00:00
> /usr/local/baculacl/sbin/bacula-fd -u root -g root -v -c
> /usr/local/baculacl/etc/bacula-fd.co
> root 24365 1 24367  02 Jun15 ?00:00:00
> /usr/local/baculacl/sbin/bacula-fd -u root -g root -v -c
> /usr/local/baculacl/etc/bacula-fd.co
>
> The output of a RH7.3 (I have three different PIDs so I think these are
> different processes):
> UIDPID  PPID  C STIME TTY  TIME CMD
> root 29383 1  0 09:20 ?00:00:00
> /usr/local/baculacl/sbin/bacula-fd -u root -g root -v -c
> /usr/local/baculacl/etc/bacula-fd.
> root 29385 29383  0 09:20 ?00:00:00
> /usr/local/baculacl/sbin/bacula-fd -u root -g root -v -c
> /usr/local/baculacl/etc/bacula-fd.
> root 29387 29385  0 09:20 ?00:00:00
> /usr/local/baculacl/sbin/bacula-fd -u root -g root -v -c
> /usr/local/baculacl/etc/bacula-fd
>
> The options for the compilation are the same. So I can not figure out
> what the problem is. Maybe I have to check it in the source. It's not a
> problem but maybe someone has a same type of thing...
>
>
> Norbert Murzsa
> Senior Systems Engineer (CCSE+SCP)
> T
> (04) 460 6068
>
>
> F
> (04) 460 6001
> E
> [EMAIL PROTECTED]
> W
> www.gen-i.co.nz
>
> Level 3, 154 Featherston Street,
> Wellington, New Zealand
> 
>
> "This communication, including any attachments, is confidential. If you
> are not the intended recipient, you should not read it - please contact
> me immediately, destroy it, and do not copy or use any part of this
> communication or disclose anything about it. Thank you. Please note that
> this communication does not designate an information system for the
> purposes of the Electronic Transactions Act 2002."
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Arno
> Lehmann
> Sent: Tuesday, 20 June 2006 12:36 p.m.
> To: bacula-users@lists.sourceforge.net
> Subject: Re: [Bacula-users] 3 running processes of fd daemon.
>
> Hi,
>
> On 6/20/2006 1:48 AM, Norbert Murzsa wrote:
> > Ok. Thank you.
> > So the question again.
> >
> > Why does Bacula client process start only one thread on RHEL3/4 and
>
> why
>
> > does Bacula client process start three threads on RH7.3.
> > The servers haven't got any other high traffic.
> >
> > The Bacula version is the same (1.38.6 and 1.38.10) and compiled from
> > the source.
> > I would like to run them with the same number of thread if it
>
> possible.
>
> Are you actually sure the fd runs a different number of threads?
>
> For example, I get the following:
> >  ps -LfC bacula-fd
> > UIDPID  PPID   LWP  C NLWP STIME TTY  TIME CMD
> > root  4351 1  4351  02 May19 ?00:00:02
>
> /usr/sbin/bacula-fd -c /etc/bacula/bacula-fd.conf
>
> > root  4351 1  4355  02 May19 ?00:00:00
>
> /usr/sbin/bacula-fd -c /etc/bacula/bacula-fd.conf
>
> As you see, one process (PID) and two threads (LWPs) from an idle FD.
>
> > Before the question of why...
> >
> > The reason of the question is that client is frustrated from the
> > different threads on different operating systems and they want to use
> > another solution maybe.
>
> If they actually are worried about the number of threads I don't think
> that can be helped. If it's a question of understanding the different
> diagnostic tools, especially how threads are represented from ps' and
> tops point of view, depending on the kernel, the system library, and the
>
> threading model, they should learn :-)
>
> Arno
>
> > Norbert Murzsa
> > Senior Systems Engineer (CCSE+SCP)
> > T
> > (04) 460 6068
> >
> >
> > F
> > (04) 460 6001
> > E
> > [EMAIL PROTECTED]
> > W
> > www.gen-i.co.nz
> >
> > Level 3, 154 Featherston Street,
> > Wellington, New Zealand
> > 
> >
> > "This communication, including any attachments, is confidential. If
>
> you
>
> > are not the intended recipient, you

Re: [Bacula-users] bextract not extracting windows files?

2006-06-20 Thread Ger Apeldoorn
You are probably not extracting it to the windows client.

If you extract it to a Linux client, you'll get that error. Try sending it to 
the FD on the Windows PC.

Greetings,
Ger.

Op dinsdag 20 juni 2006 13:32, schreef [EMAIL PROTECTED]:
> Hello,
>
> I am trying to extract one file from a diskvolume and get this error:
> " bextract error: Win32 GZIP data stream not supported on this client."
>
> Does this mean that it does not extract W-data or am I doing something
> wrong?
>
> This is version 1.38.0 - I think I remember something mentioned on this on
> the list, but
> can't find it in the archives - link to GMane archives are not working for
> me
> and sourgeforge gives 9000 hits
>
> --
> Regards
>
> Steen
>
> -- 
> Steen L Meyer - IT Manager -  Ibsen Photonics A/S
> Ryttermarken 15 - 21, DK-3520 Farum, Denmark
> Tel.: (+45) 44 34 70 00 - Fax.: (+45) 44 34 70 01
> [EMAIL PROTECTED] - http://www.ibsenphotonics.com
>
>
>
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.



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


Re: [Bacula-users] how unmark 'used' volumne

2006-06-21 Thread Ger Apeldoorn
In console:

update volume
 1: Volume Status
-select pool- 
enter media-id (from shown table)
 1: Append

Good luck
Ger.

Op donderdag 22 juni 2006 08:24, schreef Przemysław Staniszewski:
> Hi there
>
>  I have mistake in my conf and volume was marking as Used. I fix this,
> but how can I remark this volume?
>
> regards


All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] How can you get bacula to relabel a tape

2006-06-26 Thread Ger Apeldoorn
Op maandag 26 juni 2006 20:50, schreef John Boris:
> I am trying to get bacula to relabel the tapes I have in my autochanger.
> They were already labeled through the label barcode command in vconsole
> but the labels aren't being recognized.  When bacula tries to use the
> tape it says it can't find an appendable volume.  Any ideas on this one.
> I issued the label barcode command thinking it would relabel the tape
> but I was wrong.
 
if you do a 

mt rewind  (rewind)
mt weof(write end of file)

your tape is emptied and can be labeled again.

If your tape is not at the default location, add -f [destination]. 
(mt -f /dev/wherever-your-tapestreamer-is rewind)

Good luck,
Ger.


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Firing off a bunch of jobs

2006-06-30 Thread Ger Apeldoorn
I've come across this too, I edit the schedule to do this. 

But it would be nice to have such a command!

Ger

> I haven't looked to see if this is already a feature or feature request,
> but it would be nice to have "job groups" so you could say:
> "run jobgroup=2" and have every job in that group fire off.

-- 


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backup to alternate USB HDDs

2006-07-12 Thread Ger Apeldoorn
Hi Greg,

I mount all external HDD's at /mnt/HDD and use the console to mark the offsite 
volume as "Full".

Perhaps not idiot-proof, but it is simple & effective.

Ger.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backup problem

2006-07-16 Thread Ger Apeldoorn
Hi,

It is very important that you use forward slashes in the directory names.

Furthermore, you must make sure that the FD port is not firewalled.

What is the error message for the windows client's jobs?

Ger.

Op vrijdag 14 juli 2006 23:02, schreef [EMAIL PROTECTED]:
> Hi,
>
> I'm trying to backup a windows' files and I've problem to make it work.
>
> I've installed bacula for windows but I'm not sure what kind of path
> definitions should I use, (bacula-fd.conf):
>
> FileDaemon {
>   Name = dhlrs-fd
>   FDport = 9102
>   WorkingDirectory = C:/bacula/working  #Or C:\bacula\working ?
>   Pid Directory = C:/bacula/working #Or C:\bacula\working ?
> }
>
> Also on freeBSD I get this error when I query the status on the console:
>
> Device status:
> Device "FileStorage" (/tmp) is not open or does not exist.
>
> Device {
>   Name = FileStorage
>   Device Type = File
>   Media Type = File
>   Archive Device = /tmp
>   LabelMedia = yes;   # lets Bacula label unlabeled media
>   Random Access = Yes;
>   AutomaticMount = yes;   # when device opened, read it
>   RemovableMedia = no;
>   AlwaysOpen = no;
> }
>
> On freeBSD the /tmp path exist, what's it happening here?
>
> Thanks...
>
>
>
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Possible bug in bacula 1.38.9?

2006-07-23 Thread Ger Apeldoorn
Hi,

I've got a problem restoring files with bacula, I think it is related to my 
setup which I'll explain first.

I've got two backup routines running at the same time, one to our NAS (full 
weekly, daily incrementals). The other one goes to a (few) external HDD's for 
offsite storage. That one is a Full backup, done once a week.

All backups are using the same catalogue. (<- perhaps this is (part of) the 
problem, unsure)

For each server there are two jobs, referring to the same Client and Fileset.

I use the GNOME-Console and click on the Restore button.
I select the right Job, client, fileset, pool and storage.
I click "Select files". This is where the problems arise:
The table in the GUI is garbled, with a bit of trouble I can read "Expected 
positive integer, got: dir"
The console shows the following:
%<
restore select current fileset="server" client="server-fd" pool="NAS-Files" 
storage="FileNAS"Using default Catalog name=MyCatalog DB=bacula
+---+---+--+-+-+-+---+
| JobId | Level | JobFiles | JobBytes| StartTime   | VolumeName  | 
StartFile |
+---+---+--+-+-+-+---+
| 5,227 | F |7,400 | 229,440,478 | 2006-07-22 01:40:05 | HDDWeekly01 |  
  
55 |
| 5,278 | I |5 |  14,806 | 2006-07-22 23:24:47 | NASVol0007  |  
  
12 |
+---+---+--+-+-+-+---+
You have selected the following JobIds: 5227,5278

Building directory tree for JobId 5227 ...  

Building directory tree for JobId 5278 ...  
2 Jobs, 7,225 files inserted into the tree.
Warning, the JobIds that you selected refer to more than one MediaType.
Restore is not possible. The MediaTypes used are:
File
FileNAS
The defined Storage resources are:
 1: File
 2: RemovableHDD
 3: FileNAS
Select Storage resource (1-3): Expected a positive integer, got: cd /
Select Storage resource (1-3): Expected a positive integer, got: .messages
Select Storage resource (1-3): 
%<

I guess this should say it...

Any help greatly appreciated!

One more question though, the NAS takes full backups and incrementals. If a 
backup to an external HDD is taken after the NAS backup; are the incrementals 
relative to the NAS or the HDD?

If an upgrade would resolve this, I'd like to know. Because it is a lot of 
work to update all agents, I haven't tried that one yet. Perhaps an 
auto-update feature for the agents would be a very nice feature! It would 
make large deployments much easier to manage.

Many thanks,
Ger.

PS: As of this afternoon, it is possible that I cannot respond to inquiries 
for a couple of days, I'll get back to you for sure!! Thanks!

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Possible bug in bacula 1.38.9?

2006-07-27 Thread Ger Apeldoorn
> I suggest trying bconsole instead.

Hi Dan,

Thanks for your reply. If I use the non-gui interface, it works. But these 
warnings are bothering me. Am I making a correct backup when it says "Restore 
is not possible"?

Ger.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Ruby script to parse bacula-dir.conf -> list with jobs

2006-09-18 Thread Ger Apeldoorn
Hi, 

I made a little ruby script to parse bacula-dir.conf in order to generate a 
list of jobs (in HTML) with the pathnames that is backed-up.

It's pretty simple, wilddir and wildfiles are ignored. Just the File = in 
include and excludes. 

Note that the bacula-dir.conf must be readeable by the webserver, which might 
be a security issue.

I post it here incase someone can benefit. No help required this time ;)

Greetings,
Ger.

PS: Please delete the newlines that my client inserts.

%<
#!/usr/bin/ruby
#
# This script shows what is configured to be backupped on each machine.
#
FILENAAM = String.new("/etc/bacula/bacula-dir.conf");

class ConfParser

  def getJobs
@jobs = Array.new #Create Array to hold jobs
file = File.new(::FILENAAM, "r")
while (temp = file.gets)
  # Detect start of Job-block
  if (temp[/^Job /])
# Make Job object with settings
job = Job.new()
job.fulljob = String.new
while ((temp = file.gets) && !(temp[/^\}/]))
  job.fulljob += temp
  case temp
  when /Name = (.*)/
job.jobname = $1
  when /Client = (.*)/
job.clientname = $1
  when /FileSet = (.*)/
job.filesetname = $1
  end
end
@jobs.push(job) if not (job.jobname[/Catalog/] || 
job.jobname[/Restore/])
  end
  #After Job block
end
  file.close
#Return array of Job objects
@jobs
  end

end

class Job

  attr_accessor :jobname, :clientname, :filesetname, :fulljob

  def getFileSet
@includeset = Array.new #Create Array to hold Includes
@excludeset = Array.new #Create Array to hold Excludes
file = File.new(::FILENAAM, "r")
while ((temp = file.gets) && !(temp[/Name = #{filesetname}/]))
end
while ((temp = file.gets) && !(temp[/File = (.*)/]))
end
@includeset.push($1)
while ((temp = file.gets) && !(temp[/\}/]))
  unless (temp[/#/])
temp[/File = (.*)/]
@includeset.push($1)
  end
end
if ((temp = file.gets) && (temp[/Exclude/]))
  while ((temp = file.gets) && !(temp[/\}/]))
unless (temp[/#/])
  temp[/File = (.*)/]
  @excludeset.push($1)
end
  end
end
return @includeset, @excludeset

  end

end

print "Content-type: text/html\r\n\r\n"
print "Lijst van Bacula"

print "Dit is de lijst met backup-jobs met erbij wat er ge-backupped wordt."
print "Controleer svp wat er van jouw pc wordt gebackupped, alsmede de 
servers"
print "waar jij mee te maken hebt."

conf = ConfParser.new
@jobs = conf.getJobs

@jobs.each do |job|
  #job = @jobs[29]
  print "#{job.jobname}"
  @includeset, @excludeset = job.getFileSet
  print "INCLUDES:"
  @includeset.each do |includes|
print includes + ""
  end
  print ""
  print "EXCLUDES:"
  @excludeset.each do |excludes|
print excludes + ""
  end
  print ""
end

print ""
%<



-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Errors while restoring to XP client

2006-09-22 Thread Ger Apeldoorn
Hi,

I've got a lot of these errors while restoring to a Windows client:

22-Sep 11:09 grace-fd: RestoreFiles.2006-09-22_10.39.21 Error: c:
\cygwin\home\kern\bacula\k\src\win32\findlib\../../findlib/create_file.c:241 
Could not create /d:/d/Projects/software/stelsel.pdf: ERR=The filename, 
directory name, or volume label syntax is incorrect.

Versions of bacula:
director:1.38.9
nas-sd:1.38.5
grace-fd: 1.38.9

As you can see, I tried to restore the files directly to the D: disk, but this 
was not possible. (with the option 'where' I entered: "/d:/"

I worked around it by using the default location, and then moving it to the 
definitive location. 

Is this a (perhaps old) bug or a user error on my part?

Thanks,
Ger.

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] problem after upgrade from 1.38.9 to 1.38.11

2006-09-28 Thread Ger Apeldoorn
Op donderdag 28 september 2006 12:55, schreef lordjea:
> Hi, today upgrade my bacula, but when I'm try to mount the tape to run a
> job, show me an error:
> device "LTO3" (/dev/nst0): ERR=Permission denied

You probably dont have readwrite permissions to the /dev/nst0 device.

You should do as root:
groups bacula   (Generates list of groups that user bacula is a member of)

And check the permissions and ownership with:
ls -la /dev/nst0 

If you dont know how to interpret the output correctly you can mail the 
output.

Ger.

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Restoring directory

2006-09-28 Thread Ger Apeldoorn
I've seen this kind of behaviour when the client and director versions were 
not identical.

> But no file was really restored. I thought it was enough to mark the
> dirctory I wanted to restore. I am pussled, what am I doing wrong?
>
-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] The number of files mismatch

2006-10-05 Thread Ger Apeldoorn
Hi,

This happens if you interrupt a backup, so the catalog is not updated 
properly.

Here's how to fix it:
http://www.bacula.org/dev-manual/Tips_Suggestions.html#SECTION000367000

Greetings,
Ger

Op donderdag 5 oktober 2006 09:49, schreef Julien Cigar:
> Hello,
>
> ===
> Bacula: 1.38.11
> Os: Linux (Debian), kernel 2.6.17
> Tape drive: Sony SDX-500C
> Scsi card: Adaptec 2940 Ultra SCSI
> ===
>
> I'm using Bacula for months and it worked fine until today:
>
> 05-Oct 03:00 phoenix-sd: Volume "Full-Tape-0018" previously written,
> moving to end of data.
> 05-Oct 03:01 phoenix-sd: phoenix-job.2006-10-05_03.00.00 Error: I cannot
> write on Volume "Full-Tape-0018" because:
> The number of files mismatch! Volume=67 Catalog=34
> 05-Oct 03:01 phoenix-sd: Marking Volume "Full-Tape-0018" in Error in
> Catalog.
>
> Any idea what could be the cause of this ?
>
> Also, I have 18 volumes in my catalog (Full-Tape-0001 to
> Full-Tape-0018), and today Bacula had to start from Full-Tape-0001 again
> (recycling).
> My tapes were written sequentially (from Full-Tape-0001 to
> Full-Tape-0018), but I noticed that Bacula pruned only volumes
> Full-Tape-0001, Full-Tape-0004, Full-Tape-0008, Full-Tape-0010. I don't
> understand why because volume Full-Tape-0003 has been written before
> Full-Tape-0004 and Full-Tape-0003 has not been pruned ... (I have a
> Volume Retention of 30 days).
>
> Thanks for answers,
> Julien

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Poll - What operating systems do you run Bacula on?

2006-10-10 Thread Ger Apeldoorn
> "what operating system are you running Bacula on?". I'm interested in which
> OS distributions, versions and platforms are being deployed as Bacula
> servers.

DIR: Ubuntu 6.06 LTS
SD1: Ubuntu
SD2: Debian

FD: Windows2k,XP, Ubuntu, RHEL2,3,4, Fedora core

Ger.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Double backup job

2006-10-17 Thread Ger Apeldoorn
Well, I'm doing a similar thing using 2 seperate catalogs.

You need to specify 2 jobs and 2 fd's, but you can reuse the filesets.
You need 2 fd's because the catalog is specified there.

Greetings,
Ger.

Op dinsdag 17 oktober 2006 12:25, schreef Arno Lehmann:
> Hi,
>
> On 10/17/2006 12:15 PM, Sergio Corriero wrote:
> > Hi!
> > Is it possible to perform a job doing a backup on a hard disk, and in a
> > second time copying the backup on a tape? I understand it's is possible
> > to spool on a disk, but i mean having the result of a first backup on the
> > disk and a second copy on the tape?
>
> Not yet.
>
> > If this could be possible, could i restore both from the disk and from
> > the tape?
>
> No. What you can do today (in the beta version) is moving a job to
> another storage or pool. This is called migration. Copying of a job will
> be implemented later, but this has not yet started. I guess that copying
> the data itself is practically identical to migrating a job, but
> allowing Bacula to decide from which set of identical jobs to restore is
> not yet possible.
>
> I guess this will be something to discuss when voting for furure
> development goals after 1.40 is released.
>
> Arno
>
> > Thanks in advance
> >
> > Sergio
> >
> >
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > ___
> > Bacula-users mailing list
> > Bacula-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Store on two USB-Disks

2006-10-30 Thread Ger Apeldoorn
Hi,

I use several usbdisks like this. I manually update the device-status when all 
backups for that week are completed. (I set it to 'full')

There's probably a better way to do it (without manual intervention), but it 
works for now. (Any tips are appreciated though)

Ger.

Op maandag 30 oktober 2006 10:27, schreef Niko Sams:
> Hi,
>
> Using an USB-Disk as backup media is no problem - but I would like to use
> two disks and change them weekly. So if one fails we sill have the (max) on
> week old backup from the other disk.
> Of course the complete restore should work with only one disk.
>
> Can I configure the device to get this?
>
> thanks,
> niko sams
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Store on two USB-Disks

2006-10-30 Thread Ger Apeldoorn
Op maandag 30 oktober 2006 11:13, schreef Niko Sams:
> Thanks for your quick reply,
>
> > I use several usbdisks like this. I manually update the device-status
> > when all backups for that week are completed. (I set it to 'full')
>
> And the second disk whill then now begin from zero?
> So you can restore everything with only one disk?

No, you'll need to do a full-backup to the fresh disk first. It is still in 
the same catalog.

Ger.

>
>
> niko
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problems with BaculaSD

2006-11-05 Thread Ger Apeldoorn
Hi Matti,

Op maandag 6 november 2006 07:27, schreef Matti Jormakka:
> Hello,
>
> We have configured a Director and a Storage Daemon on a machine called
> host in our local network. In addition to a local test File Daemon
> (running on host) we have a File Daemon on a machine outside our local
> network. We have set up a domain name host.domain.com for host that is
> visible to outside. We also have configured port forwarding on our
> router to forward incoming connections to Storage Daemon's default port
> (9103) to host. The following picture illustrates the port forwarding
> setup:

Shouldn't you make the FD connect to the router then??
Port forwarding is something else than a router; the router mimicks the host 
that is on the LAN. (for the specified port only)

> The director's storage configuration is set up to connect to Storage
> Daemon located at host.domain.com and port 9103. Also the Storage Daemon
> is configured to listen on address host.domain.com and port 9103.
> However, when trying even to check the status of the Storage Daemon, the
> following error message is displayed:
>
> 02-Nov 14:25 host-dir: *Console*.2006-11-02_14.23.55 Fatal error:
> bnet.c:775 Unable to connect to Storage daemon on host.domain.com:9103.
> ERR=Connection refused
>
> The significant parts of the configuration files are as follows:
>
> bacula-dir.conf:
>
>Storage {
>  Name = File
>  Address = host.domain.com
>  Password = "password"
>  Device = FileStorage
>  Media Type = File
>}
>
> bacula-sd.conf:
>
>Storage {
>  Name = host-sd
>  SDAddress = host.domain.com
>  SDPort = 9103
>  WorkingDirectory = "/var/lib/bacula"
>  Pid Directory = "/var/run/bacula"
>  Maximum Concurrent Jobs = 20
>}
>
>Director {
>  Name = host-dir
>  Password = "password"
>}
>
> Can the problem be in our Bacula configurations or in our network setup?
> Note that we are also interested in receiving professional support.



> - Matti Jormakka

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problems with BaculaSD

2006-11-05 Thread Ger Apeldoorn
> Shouldn't you make the FD connect to the router then??
> Port forwarding is something else than a router; the router mimicks the
> host that is on the LAN. (for the specified port only)

Sorry, that was not very clear, was it?? :)

I meant this...
Port forwarding is something else than a router; the NAT router mimicks the
host that is on the LAN. (for the specified port only)


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] how to start over after test runs.

2006-11-05 Thread Ger Apeldoorn
The scripts are by default in the /etc/bacula directory AFAIK.

start them like this:
cd /etc/bacula
./drop_mysql_tables

If you really don't have them, you can drop the entire bacula database (see 
below) and recreate it as you have done before.

#WARNING: This deletes your database!!
mysql -u root -p #if you dont have a password set, drop the -p
drop database bacula;
exit

Good luck!
Ger.

Op maandag 6 november 2006 07:58, schreef Jaap Stolk:
> I would like to start over, but i don't seem to have the
> drop_mysql_tables / make_mysql_tables scripts. I do backup to file, so
> i don't need to rewind/EOF tapes (I already deleted the volume files)
>
> I couldn't find anything in the manual or on google (apart from
> instructions to use the above script)
>
> how do i clear the catalog ? (or do i need to ?)
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problems with BaculaSD

2006-11-05 Thread Ger Apeldoorn
> I believe it already does connect to router, since host.mydomain.com is
> resolved as the public IP (given by ISP naturally) of our router.

Ok, I didnt get that.. :)

Then you should check for the firewall like Michael proposed. It might also be 
that the daemon is not running on host.

You can telnet to the port in question to check if it works; much quicker than 
restarting your job every time.
First check it on host itself; like 'telnet localhost 9103'
If this works (you get 'connected to') you know the daemon is listening.

Then try the same from another host on your network. If this works, the 
firewall settings are probably not bothering you. <- if you firewall based on 
the remote ip address, it will work from here, but not from the outside.. 
Check that if you have problems.

If that worked, try the same from the system outside your network. If this 
does not work; check if the port-forward is set correctly (to the right port 
on the right host)

Ger.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] how to start over after test runs.

2006-11-06 Thread Ger Apeldoorn
> (I installed using "apt-get" in debian)

Ah ok... I installed using the source..

> I didn't do anything to create the database last time, i just ran
> "apt-get install bacula-director-mysql" i suppose i can do that again.

Perhaps you can try 'dpkg-reconfigure bacula-director-mysql' after dropping 
the database.
Note that I am not sure if this is where the database is created, if it is not 
you can remove the package and reinstall it after dropping the database.

> small world :-). that's about 1km from where i am :)
> www.marimecs.com

It is indeed! I've seen the building. :)

Greetings, 
Ger.

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problems with BaculaSD

2006-11-06 Thread Ger Apeldoorn
> "Telnet localhost 9103" works but "telnet host.mydomain.com 9103" (which is
> then correctly resolved as the public IP) doesn't. There seems to be
> something wrong with the port forwarding.  The port forwarding is set up
> for the sd in the following way in the router:
>
> Source IP/Mask: 0.0.0.0 / 0.0.0.0
> Destination IP/Mask: 10.0.0.5 / 255.255.255.255 (10.0.0.5 is "host")
> Port Start/Port End/Port Map: 9103 / 9103 / 9103
> Protocol: TCP

You did try if from another host on your network?
The port forward looks fine to me... You dont need to do anything else to 
activate it? (just a guess)

Greetings,
Ger.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Removable Disk HOWTO

2006-11-13 Thread Ger Apeldoorn
Thanks! I surely can use this!

(This should be on the website I think)

Ger.

Op maandag 13 november 2006 22:25, schreef Josh Fisher:
> Attached is a "Bacula And Removable Disk HOWTO" that describes a method
> and script I am using for backing up to USB disk drives on Fedora Core
> 4. USB disk drives are used as virtual magazines for emulating a
> mult-drive magazine-based tape library with barcode reader. The
> "magazines" and the volumes they contain are handled from within
> bconsole exactly as one would handle tape magazines for a tape device.
>
> I believe it should work on most *nix systems that have udev and autofs
> capability. Likewise, though USB drives are used as an example, it
> should work with Firewire, eSATA, etc. hot-swappable drives so long as
> the OS supports them.
>
> The script and method were developed using Bacula version 1.39.24, but
> should work on the 1.38.* and above releases. The script relies on the
> OS (via udev and autofs) to mount and unmount removable drives, so does
> not use any of the new 1.39.* directives.
>
> Enjoy!
>
> Josh Fisher

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't connect to file Daemon

2006-11-16 Thread Ger Apeldoorn
Hi,

1)You should check if your file daemon is actually running.
2)If so, try to telnet from the FD machine to localhost 9102.
3)If that works, try telnetting to the FD machine from another host.

If 1 is negative, start the daemon and check if it does not crash immediately
If 2 is positive and 3 is negative, it is likely to be caused by a local 
firewall on the FD machine...

Ger.

Op donderdag 16 november 2006 09:52, schreef Mr Abraham Lapuz:
> Good day,
>
> I installed Bacula application on a Linux (CentOS) server.
> Below is the list of information of my server.
>
> Operating System: Linux (CentOS)
> Bacula Version: bacula-1.38.11.tar
> Error Encountered:
>
> 16-Nov 15:10 bacula-dir: *Console*.2006-11-16_15.10.27 Fatal error:
> bnet.c:859 Unable to connect to File daemon on 192.168.100.216:9102.
> ERR=Connection refused
>
> Bacula Director configuration: this is only a segment.
>
> Job {
>   Name = "ofa1"
>   Client = ofa1-fd
> #  JobDefs = "DefaultJob"
>   Type = Backup
>   Messages = Standard
>   Storage = File
>   Pool = Default
>   Fileset = "ofa1 backup"
>   Write Bootstrap = "/root/bacula/bacula-1.38.11/working/Client2.bsr"
> }
>
> Client {
>   Name = ofa1-fd
>   Address = 192.168.100.216
> #  Address = ofa1
>   FDPort = 9102
>   Catalog = MyCatalog
>   Password = "ofa1" # password for FileDaemon 2
>   File Retention = 30 days# 30 days
>   Job Retention = 6 months# six months
>   AutoPrune = yes # Prune expired Jobs/Files
> }
>
> FileSet {
>   Name = "ofa1 backup"
>   Include {
> Options {
>   signature = MD5
> }
> File = /home/abbey/sms.sh
>   }
>
> CONTENTS ofa1-fd.conf:
>
> #
> # List Directors who are permitted to contact this File daemon
> #
> Director {
>   Name = bacula-dir
>   Password = "ofa1"
> }
>
> FileDaemon {  # this is me
>   Name = ofa1-fd
>   FDport = 9102  # where we listen for the director
>   WorkingDirectory = /home/abbey
>   Pid Directory = /home/abbey
>   Maximum Concurrent Jobs = 20
> }
>
>
> I'm going to add a client named (ofa1), and I configured the FileDaemon.
> Upon running Bacula with command, status client, I encountered the error
> stated above. Please help me in this problem.
>
> Immediate response will be greatly appreciated.
>
> Thanks.
>
> Abraham Lapuz, ECE
>
>
>
> ___
>_ Sponsored Link
>
> Mortgage rates near 39yr lows.
> $420k for $1,399/mo. Calculate new payment!
> www.LowerMyBills.com/lre

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problem restoring a backup of a windows client (the files don't appear)

2006-11-23 Thread Ger Apeldoorn
Hi Manuel,

If you are using compression, it can only decompress (restore) the files on 
the windows machine. You should get an error message though..

The double slash is not a problem on Linux.

Greetings,
Ger.

Op donderdag 23 november 2006 22:30, schreef Samael -:
> Hi
> I have a problem with bacula. I am using the bacula version of debian Sarge
> (stable) to make a backup of windows client .The copy will be stored on a
> file at Linux server.
>
> I Make the copy of the directory "C:\Data" of windows client and don't have
> any problem, but to restore in file "/tmp" at Linux server, the status is
> "Restore OK" but the files don't appear. I have observed that it tries to
> restore in "/tmp/C//Data" and I think that the error is caused by the
> double slash.
>
> I have tried, as the documentation of bacula says, to create the directory
> C with the suitable permissions and it doesn't solve the problem.
>
> Regards
> Manuel

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula scripting with Ruby?

2006-11-27 Thread Ger Apeldoorn
Hi! 

I'm very interested in your progress, as I also really love Ruby and Bacula.. 

I did make a little Ruby script to parse the bacula-dir.conf and make a list 
of all jobs in a human readable format so my users can look for themselves 
what is actually included on their backups.
I posted it before, but if you missed that I can mail it to you if you're 
interested.

Greetings & Salutations,
Ger.

Op zondag 26 november 2006 08:43, schreef Hydro Meteor:
> Hello all ...
>
> I have successfully configured and made / installed the current version of
> Bacula on Ubuntu Dapper Drake with Postgresql 8.1.3 (a nice first step for
> a newbie), and I included in configure the python option (since python does
> make for a nice scripting language).
>
> I am curious however if anyone has done any Bacula scripting with Ruby?
> Though I have nothing against Python, I have recently become enamored with
> Ruby (and of course Ruby seems to be getting a shot of interest these days
> thanks in part to the Ruby on Rails project).
>
> I'll probably end up doing some Bacula scripting with Ruby and will share
> what I learn in the process. Would be fun to connect with any other Bacula
> / Ruby enthusiasts out there in the ether.
>
> Cheers.

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] restore data saved from windows into a linux

2006-12-13 Thread Ger Apeldoorn
You've got to restore it to a Windows box. 

The compression algorithm is different.

Ger.

Op woensdag 13 december 2006 14:33, schreef Marco Strullato:
> Hello!
> I have to restore data saved from windows into a linux box but I get
> this error:Error: Win32 GZIP data stream not supported on this Client.
>
> How shoud I do?
>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Restore files

2006-12-14 Thread Ger Apeldoorn
Op donderdag 14 december 2006 15:28, schreef Arnaud Mombrial:
> Hello Everybody,
>
> I'm trying to restore some files that have been backed up yesterday.
>
> My problem is that the path include a space and I don't know how Bacula
> understand it.
>
> Here is the path I should restore :
>
> /home/prod/production/02.DEPARTEMENTS/JURIDIQUE/Documents
> juridiques/Contrats/
>
> But the restore command returns : No database record found
>
> Thanks for your answers
>
> Regards.

Try escaping the space with a backslash. (Documents\ juridiques)

Ger


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] graphical interface for bacula

2007-01-04 Thread Ger Apeldoorn
See OCM Webmin:
http://sourceforge.net/projects/ocmwebminplus/

Note that it is still in beta; a newer version is due to be posted very soon.

Ger Apeldoorn.

Op donderdag 4 januari 2007 09:36, schreef [EMAIL PROTECTED]:
> Hi, someone know if there is a graphical interface for bacula, easy to use
> for the backup operators?
>
> I talk about to that it can allow to run a job, to edit the schedule, and
> to do restore
>
> Thanks for your comments
>
> JeA
>
>
>
>
>
>
> __
> LLama Gratis a cualquier PC del Mundo.
> Llamadas a fijos y m�viles desde 1 c�ntimo por minuto.
> http://es.voice.yahoo.com

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] backup LVM volumes (xen guests)

2007-01-11 Thread Ger Apeldoorn
If you're using LVM, cant you use snapshots to do 'live' backups? (You dont 
have to take the guest offline)

Here's how:
http://tldp.org/HOWTO/LVM-HOWTO/snapshots_backup.html

Note that I havent actually tried this myself, so I could be mistaken.

Greetings,
Ger Apeldoorn.

Op donderdag 11 januari 2007 14:45, schreef Mikael Kermorgant:
> Hello,
>
> I'm running some xen servers stored on LVM logical volumes.
>
> I plan to try 2 sorts of backups
>
> Backup Method A)
> - stop the guest
> - backup the partition as a file
>
> FileSet {
>   Name = "axen1-autinvent"
>   Include {
> Options { sparse=yes }
> File = /dev/mapper/vg01-xeng1
>   }
> }
>
> Backup Method  B)
> - stop the guest
> - mount the LV volume somewhere
> - backup the mounted directory
>
> I've tried the method A on a 3Gb logical volume. I believed I would
> obtain a smaller file (as there's only 500Mb of data on it) for the
> backup pool but it became a 3.1 Gb file. Is this something that can be
> improved ?
>
> I thought of method B to correct that but what do you think of this
> method ? Does it sound realistic ?
>
> Thanks in advance,

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula Admin Tool (bat)

2007-01-31 Thread Ger Apeldoorn
Perhaps you can take a look at this:
http://www.opencountry.com/products/ocmwebminplus_home.html

Ger.

Op woensdag 31 januari 2007 11:33, schreef Andrew Paterson:
> Hi,
>   I know I am a little late with this comment and it is probably not
> welcome... But I feel it needs stating <...RANT...>
> I am not happy with the client-specific gui (bat).
> It would surely be better to have a server based gui run from a web-browser
> - what I had hoped bacula-web would become. I don't much look forward to
> only being able to run the bat gui on linux boxes & other UNIX clients to
> which it has been ported. OK, you will no doubt port it to windows also -
> but consider that I can run bacula-web from any web enabled device  even my
> mobile phone! Surely bacula-web should be further developed to provide the
> kind of functionality for a bacula-server that swat does for samba & the
> cups web-interface does for cups etc. <...END of RANT...>
>
> In the meantime - back to my development network reliably secured with
> bacula - Thanks to Kern et al.
>
> Andrew R Paterson
> DS Ltd.
> www.ds.co.uk
>
>
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Kern
> Sibbald
> Sent: 30 January 2007 7:06PM
> To: bacula-users@lists.sourceforge.net
> Cc: bacula-devel
> Subject: Re: [Bacula-users] Bacula Admin Tool (bat)
>
> On Tuesday 30 January 2007 17:48, Chris Hoogendyk wrote:
> > Ryan Novosielski wrote:
> > > -BEGIN PGP SIGNED MESSAGE-
> > > Hash: SHA1
> > >
> > > Not to be chomping at the bit here, but I guess questions that I have
> > > are A) How hard is it likely to be to get this thing built for Windows?
> > > I don't expect you to have an answer for that as I suppose Robert does
> > > most of the Windows work, but I'd be curious to know. B) If anyone is
> > > familiar with this, on Solaris, is there a set of files that one can
> > > add to a system that is relatively lightweight to support something
> > > like this? Perhaps you have other KDE apps and know how this works. In
> > > my experience, most distros want the qt libs package, but then that
> > > package wants about 30 others.
> > >
> > > Thanks for any insights from the peanut gallery. I'd love to start
> > > using this, but would pass for the time being if it will require
> > > extensive dependency building.
> >
> > I'll just reply to the Solaris part.
> >
> > I typically grab a good deal of this sort of stuff from sunfreeware. I
> > try not to get things I don't need, but when you have a chain of
> > dependencies, you don't have much choice -- either you want that
> > capability or you scrap the whole thing.
> >
> > I have a directory /usr/local/pkg and a directory /usr/local/src, and I
> > keep everything I have installed in one or the other of those. Some
> > things you need source, some things it's unnecessary overhead and
> > trouble.
> >
> > For me, Solaris is for servers. My desktop is Mac OS X. I don't use any
> > graphical interface on my servers. I typically have a dozen or more
> > terminal windows open with ssh sessions.
> >
> > If I were going to use a gui for something like bacula, I would want it
> > at my desktop, not on the server. So, while my backup servers and
> > everything would be on Solaris,
> >
> > I would want a client/server arrangement
> > where I could do the administration from a gui on my Mac. Don't know if
> > that fits with the current plan, but it seems most logical to me --
> > architecturally more robust and not caught up in the exporting of
> > graphical interface through something like X11. From my perspective,
> > that's not what a server ought to be spending its time doing. I would
> > want the bacula install to be modular enough that I wouldn't have to
> > install the graphical stuff on my server.
>
> What is written above is not totally clear to me.  The bat is a GUI
> application that will run on a large variety of machines Linux, Windows,
> Solaris, FreeBSD, Mac OS X and others.  The communications to the Director
> does not use X11 but simple TCP/IP.  There is no requirement to have the
> GUI installed on the server.
>
> > ---
> >
> > Chris Hoogendyk
> >
> > -
> >O__   Systems Administrator
> >   c/ /'_ --- Biology & Geology Departments
> >  (*) \(*) -- 140 Morrill Science Center
> > ~~ - University of Massachusetts, Amherst
> >
> > <[EMAIL PROTECTED]>
> >
> > ---
> >
> > Erdös 4
> >
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to share
> > your opinions on IT & business topics through brief surveys - and earn
> > cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Bacula-users mailing list
> > Bacula-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/l

Re: [Bacula-users] Network error with FD during Backup

2007-02-08 Thread Ger Apeldoorn
Hi,

You need a keepalive. Your SonicWall is terminating the connection.

Stick the Heartbeat Interval in the bacula-fd.conf:

FileDaemon {  # this is me
  Name = MyServer-fd
  FDport = 9102  # where we listen for the director
  WorkingDirectory = /var/bacula
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
  Heartbeat Interval = 15 seconds
}

Ger Apeldoorn

Op donderdag 8 februari 2007 08:44, schreef Florian Schürfeld:
> Hi there,
>
> when i try to backup a remote host, i get
>
> Fatal error: Network error with FD during Backup: ERR=Connection reseted
> by peer
> 08-Feb 07:25 bacula-dir: heidi_bkup.2007-02-08_06.24.56 Fatal error: No
> Job status returned from FD.
>
> This occures after a duration of one hour. The uplink to the remote site
> is quite good (34 mbit).
> My Bacula 2.0 Server is in the DMZ behind a SonicWall.
> What i need to know by now is, is the FD or the SD terminating the
> connection ???


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Restoring a Windows 'File Set' to a Linux Dir

2007-02-09 Thread Ger Apeldoorn
Hi,

You can install a Linux workstation and restore it thereto.

If you dont have the hardware, you might use VMWare Server (free as in beer) 
and install Linux there.

Ger.

Op vrijdag 9 februari 2007 13:12, schreef Thor Vik:
> Hey all,
>
> I think I have made a big mistake backing up my Windows music catalog to
> a Linux Bacula-SD server. When I try to restore the files back I get
> these errors "
>
> Warning: Cannot change permissions of..." By searching this forum I have
> found that I should have used the "portable" stream format. However the
> mistake is done. Is there a way to bypass this mistakes. Its a bit
> important since the backup is "real".
>
>
> Regards
>
> Wingthor
>
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
ARGOSS: your partner for atmospheric, marine & coastal information
P O Box 61
8325ZH Vollenhove The Netherlands
tel +31-527-242299 fax +31-527-242016
Web http://www.argoss.nl

Confidentiality Notice & Disclaimer
The contents of this e-mail and any attachments are intended only for the
use of the e-mail addressee(s) shown. If you are not that person, or one of
those persons, you are not allowed to take any action based upon it or to
copy it, forward, distribute or disclose the contents of it and you should
please delete it from your system.

ARGOSS Holding BV and its subsidiaries do not accept any liability for any
errors or omissions in the context of this e-mail or its attachments which
arise as a result of Internet transmission, nor accept liability for
statements which are those of the author and not clearly made on behalf of
ARGOSS.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Strange problem going to firewall

2006-02-13 Thread Ger Apeldoorn
Hi all,

I'm running the latest bacula, and everything works fine when I backup on the 
LAN.

However, I need to backup a server on the DMZ. This is what I did;

1) Install the file daemon on the dmzserver.
2) opened port 9101-9103 in the firewall for traffic going from DMZ, to the 
LAN.
3) configured both the FD and DIR.

When I start a job, it seems to run fine. After a while (about 580 MB) it 
loses the connection. Here's what I get in Console:

13-Feb 15:25 beagle-dir: dmzsvr.2006-02-13_15.20.49 Fatal error: Network error 
with FD during Backup: ERR=Connection reset by peer
13-Feb 15:26 beagle-dir: dmzsvr.2006-02-13_15.20.49 Fatal error: No Job status 
returned from FD.
13-Feb 15:26 beagle-dir: dmzsvr.2006-02-13_15.20.49 Error: Bacula 1.38.5 
(18Jan06): 13-Feb-2006 15:26:22
  JobId:                  182
  Job:                    dmzserver.2006-02-13_15.20.49
  Backup Level:           Full (upgraded from Differential)
  Client:                 "dmzsvr-fd" i686-redhat-linux-gnu,redhat,Enterprise 
3.0
  FileSet:                "dmzsvr" 2006-02-13 10:02:46
  Pool:                   "NAS-Files"
  Storage:                "FileNAS"
  Scheduled time:         13-Feb-2006 15:20:37
  Start time:             13-Feb-2006 15:20:51
  End time:               13-Feb-2006 15:26:22
  Priority:               10
  FD Files Written:       0
  SD Files Written:       0
  FD Bytes Written:       0
  SD Bytes Written:       0
  Rate:                   0.0 KB/s
  Software Compression:   None
  Volume name(s):         
  Volume Session Id:      6
  Volume Session Time:    1139503850
  Last Volume Bytes:      1,111,287,193
  Non-fatal FD errors:    0
  SD Errors:              0
  FD termination status:  Error
  SD termination status:  Running
  Termination:            *** Backup Error ***


Note that it says SD Bytes written = 0. If I cancel the job somewhere, this is 
> 0 (Depending on how long I wait several hundreds of MB's.)
This space also gets allocated on the storage, but only in the event of a 
timely cancellation.

Looks to me that it loses connection when the job either completes or reaches 
another threshold. 

I've tried to configure a heartbeat Interval = 5 minutes on the FD, but to no 
avial.

Any help very much appreciated!

Many thanks,
Ger Apeldoorn.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Strange problem going to firewall

2006-02-13 Thread Ger Apeldoorn
Hi brian,

Thanks for your reply, please see below,

On Monday 13 February 2006 16:29, Brian A. Seklecki wrote:
> Every firewall has a different timeout for TCP sockets.  I would
> investigate what the maximum NAT/PAT time duration is on yours.  
I'm not using NAT or PAT, only 'real' hosts. The TCP connection inactivity 
timeout in the firewall-rule is defaulted to 60 minutes.

> Enable 
> verbose debugging to see on what "condition" it's tearing down the state
> table/translation.

Can you tell me how to do that, I've tried to put the client in debugging mode 
through the console, but I never got any messages.

>
> Also, check a "state table" thresholds for timeouts/max durations/max
> byte counts, etc.

I'm using a sonicwall, but I cannot find anything about a 'state table'.. 

Thanks,
Ger.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Strange problem going through firewall...

2006-02-14 Thread Ger Apeldoorn

Hi all,

I'm running the latest bacula, and everything works fine when I backup on the LAN.

However, I need to backup a server on the DMZ. This is what I did;

1) Install the file daemon on the dmzserver.
2) opened port 9101-9103 in the firewall for traffic going from DMZ, to the LAN.
3) configured both the FD and DIR.

When I start a job, it seems to run fine. After a while (about 580 MB) it loses the connection. Here's what I get in Console:

13-Feb 15:25 beagle-dir: dmzsvr.2006-02-13_15.20.49 Fatal error: Network error with FD during Backup: ERR=Connection reset by peer
13-Feb 15:26 beagle-dir: dmzsvr.2006-02-13_15.20.49 Fatal error: No Job status returned from FD.
13-Feb 15:26 beagle-dir: dmzsvr.2006-02-13_15.20.49 Error: Bacula 1.38.5 (18Jan06): 13-Feb-2006 15:26:22
  JobId:  182
  Job:dmzserver.2006-02-13_15.20.49
  Backup Level:   Full (upgraded from Differential)
  Client: "dmzsvr-fd" i686-redhat-linux-gnu,redhat,Enterprise 3.0
  FileSet:"dmzsvr" 2006-02-13 10:02:46
  Pool:   "NAS-Files"
  Storage:"FileNAS"
  Scheduled time: 13-Feb-2006 15:20:37
  Start time: 13-Feb-2006 15:20:51
  End time:   13-Feb-2006 15:26:22
  Priority:   10
  FD Files Written:   0
  SD Files Written:   0
  FD Bytes Written:   0
  SD Bytes Written:   0
  Rate:   0.0 KB/s
  Software Compression:   None
  Volume name(s): 
  Volume Session Id:  6
  Volume Session Time:1139503850
  Last Volume Bytes:  1,111,287,193
  Non-fatal FD errors:0
  SD Errors:  0
  FD termination status:  Error
  SD termination status:  Running
  Termination:*** Backup Error ***


Note that it says SD Bytes written = 0. If I cancel the job somewhere, this is > 0 (Depending on how long I wait several hundreds of MB's.)
This space also gets allocated on the storage, but only in the event of a timely cancellation.

Looks to me that it loses connection when the job either completes or reaches another threshold. 

I've tried to configure a heartbeat Interval = 5 minutes on the FD, but to no avial.

Any help very much appreciated!

Many thanks,
Ger Apeldoorn.

__


[Bacula-users] Problems: "Connection reset by peer"

2006-02-17 Thread Ger Apeldoorn
Hi all!

I'm using the latest bacula and am having difficulties with the backup of one 
of the servers. (RHEL3)

I posted here before, thinking it had something todo with the Sonic firewall, 
but that does not seem the case. 

This is the setup:

FD - Firewall with open ports 9101-9103 -- Dir&SD

After about 580 MB, the connection is reset and I get the following from the 
Director: 

16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Fatal error: Network error 
with FD during Backup: ERR=Connection reset by peer
16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Fatal error: No Job status 
returned from FD.
16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Error: Bacula 1.38.5 
(18Jan06): 16-Feb-2006 08:45:52
  JobId:                  228
  Job:                    dmzsvr.2006-02-15_23.05.01
  Backup Level:           Full (upgraded from Differential)
  Client:                 "dmzsvr-fd" i686-redhat-linux-gnu,redhat,Enterprise 
3.0
  FileSet:                "dmzsvr" 2006-02-13 10:02:46
  Pool:                   "Default"
  Storage:                "DDS-4"
  Scheduled time:         15-Feb-2006 23:05:00
  Start time:             16-Feb-2006 08:40:21
  End time:               16-Feb-2006 08:45:52
  Priority:               10
  FD Files Written:       0
  SD Files Written:       0
  FD Bytes Written:       0
  SD Bytes Written:       0
  Rate:                   0.0 KB/s
  Software Compression:   None
  Volume name(s):         
  Volume Session Id:      2
  Volume Session Time:    1140006246
  Last Volume Bytes:      164,077
  Non-fatal FD errors:    0
  SD Errors:              0
  FD termination status:  Error
  SD termination status:  Running
  Termination:            *** Backup Error ***


When this happens, the FD is unaware and continues to send data to the SD.
I've even tried to use another SD, on another server. Problem persists.

On another server (Also RHEL3) this problem does not occur.

Any help VERY MUCH appreciated!

Many thanks,
Ger Apeldoorn


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Problems: "Connection reset by peer"

2006-02-17 Thread Ger Apeldoorn
Hi Marc!

Many thanks for your reply, it was indeed the Heartbeat interval. I've 
tinkered with it before, but never set it so low as Dominic suggested (15 
sec)

I've accidentally replied only to Dominic to say that it worked, but this time 
I made sure it was sent to the list...

Many thanks for your replies!

Ger.


Op vrijdag 17 februari 2006 12:06, schreef [EMAIL PROTECTED]:
> Ger Apeldoorn schreef:
> > Hi all!
> >
> > I'm using the latest bacula and am having difficulties with the backup of
> > one of the servers. (RHEL3)
> >
> > I posted here before, thinking it had something todo with the Sonic
> > firewall, but that does not seem the case.
> >
> > This is the setup:
> >
> > FD - Firewall with open ports 9101-9103 -- Dir&SD
> >
> > After about 580 MB, the connection is reset and I get the following from
> > the Director:
> > 
> > 16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Fatal error: Network
> > error with FD during Backup: ERR=Connection reset by peer
> > 16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Fatal error: No Job
> > status returned from FD.
> > 16-Feb 08:45 mypc-dir: dmzsvr.2006-02-15_23.05.01 Error: Bacula 1.38.5
> > (18Jan06): 16-Feb-2006 08:45:52
> >   JobId:  228
> >   Job:dmzsvr.2006-02-15_23.05.01
> >   Backup Level:   Full (upgraded from Differential)
> >   Client: "dmzsvr-fd"
> > i686-redhat-linux-gnu,redhat,Enterprise 3.0
> >   FileSet:"dmzsvr" 2006-02-13 10:02:46
> >   Pool:   "Default"
> >   Storage:"DDS-4"
> >   Scheduled time: 15-Feb-2006 23:05:00
> >   Start time: 16-Feb-2006 08:40:21
> >   End time:   16-Feb-2006 08:45:52
> >   Priority:   10
> >   FD Files Written:   0
> >   SD Files Written:   0
> >   FD Bytes Written:   0
> >   SD Bytes Written:   0
> >   Rate:   0.0 KB/s
> >   Software Compression:   None
> >   Volume name(s):
> >   Volume Session Id:  2
> >   Volume Session Time:1140006246
> >   Last Volume Bytes:  164,077
> >   Non-fatal FD errors:0
> >   SD Errors:  0
> >   FD termination status:  Error
> >   SD termination status:  Running
> >   Termination:*** Backup Error ***
> > 
> >
> > When this happens, the FD is unaware and continues to send data to the
> > SD. I've even tried to use another SD, on another server. Problem
> > persists.
> >
> > On another server (Also RHEL3) this problem does not occur.
> >
> > Any help VERY MUCH appreciated!
>
> Hi,
>
> I read this on page
> http://www.bacula.org/rel-manual/Client_Fi_daemon_Configura.html
>
> maybe this 'Hearbeat Interval' helps?
>
> Heartbeat Interval = 
>  This record defines an interval of time. For each heartbeat that
> the File daemon receives from the Storage daemon, it will forward it to
> the Director. In addition, if no heartbeat has been received from the
> Storage daemon and thus forwarded the File daemon will send a heartbeat
> signal to the Director and to the Storage daemon to keep the channels
> active. The default interval is zero which disables the heartbeat. This
> feature is particularly useful if you have a router such as 3Com that
> does not follow Internet standards and times out a valid connection
> after a short duration despite the fact that keepalive is set. This
> usually results in a broken pipe error message.
>
>  If you continue getting broken pipe error messages despite using
> the Heartbeat Interval, and you are using Windows, you should consider
> upgrading your ethernet driver. This is a known problem with NVidia
> NForce 3 drivers (4.4.2 17/05/2004), or try the following workaround
> suggested by Thomas Simmons for Win32 machines:
>
>  Browse to: Start > Control Panel > Network Connections
>
>  Right click the connection for the nvidia adapter and select
> properties. Under the General tab, click "Configure...". Under the
> Advanced tab set "Checksum Offload" to disabled and click OK to save the
> change.
>
>  Lack of communications, or communications that get interrupted can
> also be caused by Linux firewalls where you have a rule that throttles
> connections or traffic.
>
> --
> Best regards,
>
> Marc Cuypers
>
>
> 

[Bacula-users] Client on Fedora Core 1

2006-02-22 Thread Ger Apeldoorn
Hi!

I've got a few clients that run Fedora Core 1. I didn't see any packages that 
have FC1 in the name or something. 

What RPM package can I install? Or is a manual compilation nessesary?

Many thanks,
Ger


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] tape drive not writing

2006-02-23 Thread Ger Apeldoorn
Hi,

Are you letting the tape settle for about a minute before mounting?

If you dont, the storage daemon can get confused. If you restart the Storage 
Daemon, it will probably work fine.

Greetings,
Ger.

Op vrijdag 24 februari 2006 04:11, schreef Dave:
> Hello,
> I'm getting this msg from bacula 1.38, it's wanting a series of tapes
> tape-0007 through this one is asking for tape-0010, but it's not doing
> anything. I put in the tape label it, mount it, and nothing. What do i do?
> Thanks.
> Dave.
>
> > 23-Feb 17:17 zeus-sd: Please mount Volume "TAPE-0010" on Storage Device
> > "Quantum DLT4000" (/dev/sa0) for Job Manual_Backup.2006-02-22_22.13.49
>
> ---
> 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


---
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


Re: [Bacula-users] Console program get hang..........

2006-02-23 Thread Ger Apeldoorn
Are you sure that the director is running on the same host as you try to run 
bconsole?

Check this using:
"ps ax | grep bacula-dir"

You can try to telnet to localhost to see if you see anything.

It should connect if you type: (linux)
"telnet localhost 9101"

If you type anything, it will disconnect.

Ger.


Op vrijdag 24 februari 2006 05:09, schreef vipul shukla:
> Hi all,
>
>  I am system administrator, i am using bacula as a
> backup tool. it was working fine but from last 1 month
> it has some problem.
>
> Problem discription
>
> 1) when i give command ./bconsole then it hang and
> givemessage like "Connecting to Director
> localhost:9101"
>
>
> regarding to this problem please help me.
>
> Thanks
> vipul
>
>
>
>
> __
> Yahoo! India Matrimony: Find your partner now. Go to
> http://yahoo.shaadi.com
>
>
> ---
> 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


---
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


[Bacula-users] Pool problem (can't swim?)

2006-03-17 Thread Ger Apeldoorn
Hi!

I've got a problem with Pools and backing up to a file resource...

The trouble is that although i tell it to backup using the NAS-Files pool, it 
stubbornly inists to backup to the Default pool to which that SD has no 
access. (The NAS is just a big HDD)

This is the STAT from the SD:
%<---
nas-sd Version: 1.38.5 (18 January 2006) i686-pc-linux-gnu debian 
testing/unstable
Daemon started 16-Mar-06 11:25, 1 Job run since started.

Running Jobs:
Writing: Full Backup job job1 JobId=838 Volume=""
pool="Default" device=""FileStorageNAS" (/data/bacula)"
Files=0 Bytes=0 Bytes/sec=0
FDReadSeqNo=6 in_msg=6 out_msg=4 fd=6
Writing: Full Backup job job2 JobId=840 Volume=""
pool="Default" device=""FileStorageNAS" (/data/bacula)"
Files=0 Bytes=0 Bytes/sec=0
FDReadSeqNo=6 in_msg=6 out_msg=4 fd=8

(%<)


Jobs waiting to reserve a drive:
   3608 JobId=888 wants Pool="NAS-Files" but have Pool="Default" on drive 
"FileStorageNAS" (/data/bacula).
   3607 JobId=888 wants Vol="Volume0002" drive has Vol="" on drive 
"FileStorageNAS" (/data/bacula).


Device status:
Device "FileStorageNAS" (/data/bacula) is not open or does not exist.
Device is BLOCKED waiting for media.

%<---

Here is relevant stuff from my bacula-sd.conf on the NAS:
It is configured to automatically create a new volume for each job.
%<---
Storage { # definition of myself
  Name = bigfilemachine-sd
  SDPort = 9103  # Director's port
  WorkingDirectory = "/var/bacula/working"
  Pid Directory = "/var/run"
  Maximum Concurrent Jobs = 20
}

Device {
  Name = FileStorageNAS
  Media Type = File
  Archive Device = /path/bacula
  LabelMedia = yes;   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;   # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}
%<---

Here's the directors config:
%<---
JobDefs {
  Name = "DefaultNASJob"
  Type = Backup
  Level = Differential
  Client = minime-fd
  FileSet = "minime"
  Schedule = "WeeklyCycle"
  Storage = FileNAS
  Messages = Standard
  Pool = NAS-Files
  Priority = 10
}

Job {
  Name = "testmachineNAS"
  Client = testmachine-fd
  JobDefs = "DefaultNASJob"
  FileSet = "testmachine"
  Write Bootstrap = "/var/bacula/working/testmachine.bsr"
}

FileSet {
  Name = "testmachine"
  Include {
Options { signature = MD5
  compression=GZIP }
File = /etc
  }
}

Client {
  Name = testmachine-fd
  Address = testmachine.whatever.com
  FDPort = 9102
  Catalog = MyCatalog
  Password = "modified"  # password for FileDaemon
  File Retention = 30 days# 30 days
  Job Retention = 6 months# six months
  AutoPrune = yes # Prune expired Jobs/Files
}

# Definition of file storage device
Storage {
  Name = FileNAS
  Address = bigfilemachine.whatever.com# N.B. Use a fully 
qualified name here
  SDPort = 9103
  Password = "modified"  
  Device = FileStorageNAS
  Media Type = File
}

Pool {
  Name = NAS-Files
  Maximum Volume Jobs = 1
  Pool Type = Backup
  Recycle = yes   # Bacula can automatically recycle 
Volumes
  AutoPrune = yes # Prune expired volumes
  VolumeRetention = 60 days
  Accept Any Volume = yes # write on any volume in the pool
  Maximum Volumes = 100
  LabelFormat = "Volume"
}
%<---

Any help greatly appreciated!!

Many thanks, 
Ger



---
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


Re: [Bacula-users] Pool problem (can't swim?)

2006-03-19 Thread Ger Apeldoorn
Hi there!

No responses yet, is everyone baffled? If you need extra information please let 
me know...

Thanks,
Ger.

Op vrijdag 17 maart 2006 10:33, schreef Ger Apeldoorn:
> Hi!
> 
> I've got a problem with Pools and backing up to a file resource...
> 
> The trouble is that although i tell it to backup using the NAS-Files pool, it 
> stubbornly inists to backup to the Default pool to which that SD has no 
> access. (The NAS is just a big HDD)
> 
> This is the STAT from the SD:
> %<---
> nas-sd Version: 1.38.5 (18 January 2006) i686-pc-linux-gnu debian 
> testing/unstable
> Daemon started 16-Mar-06 11:25, 1 Job run since started.
> 
> Running Jobs:
> Writing: Full Backup job job1 JobId=838 Volume=""
> pool="Default" device=""FileStorageNAS" (/data/bacula)"
> Files=0 Bytes=0 Bytes/sec=0
> FDReadSeqNo=6 in_msg=6 out_msg=4 fd=6
> Writing: Full Backup job job2 JobId=840 Volume=""
> pool="Default" device=""FileStorageNAS" (/data/bacula)"
> Files=0 Bytes=0 Bytes/sec=0
> FDReadSeqNo=6 in_msg=6 out_msg=4 fd=8
> 
> (%<)
> 
> 
> Jobs waiting to reserve a drive:
>3608 JobId=888 wants Pool="NAS-Files" but have Pool="Default" on drive 
> "FileStorageNAS" (/data/bacula).
>3607 JobId=888 wants Vol="Volume0002" drive has Vol="" on drive 
> "FileStorageNAS" (/data/bacula).
> 
> 
> Device status:
> Device "FileStorageNAS" (/data/bacula) is not open or does not exist.
> Device is BLOCKED waiting for media.
> 
> %<---
> 
> Here is relevant stuff from my bacula-sd.conf on the NAS:
> It is configured to automatically create a new volume for each job.
> %<---
> Storage { # definition of myself
>   Name = bigfilemachine-sd
>   SDPort = 9103  # Director's port
>   WorkingDirectory = "/var/bacula/working"
>   Pid Directory = "/var/run"
>   Maximum Concurrent Jobs = 20
> }
> 
> Device {
>   Name = FileStorageNAS
>   Media Type = File
>   Archive Device = /path/bacula
>   LabelMedia = yes;   # lets Bacula label unlabeled media
>   Random Access = Yes;
>   AutomaticMount = yes;   # when device opened, read it
>   RemovableMedia = no;
>   AlwaysOpen = no;
> }
> %<---
> 
> Here's the directors config:
> %<---
> JobDefs {
>   Name = "DefaultNASJob"
>   Type = Backup
>   Level = Differential
>   Client = minime-fd
>   FileSet = "minime"
>   Schedule = "WeeklyCycle"
>   Storage = FileNAS
>   Messages = Standard
>   Pool = NAS-Files
>   Priority = 10
> }
> 
> Job {
>   Name = "testmachineNAS"
>   Client = testmachine-fd
>   JobDefs = "DefaultNASJob"
>   FileSet = "testmachine"
>   Write Bootstrap = "/var/bacula/working/testmachine.bsr"
> }
> 
> FileSet {
>   Name = "testmachine"
>   Include {
> Options { signature = MD5
>   compression=GZIP }
> File = /etc
>   }
> }
> 
> Client {
>   Name = testmachine-fd
>   Address = testmachine.whatever.com
>   FDPort = 9102
>   Catalog = MyCatalog
>   Password = "modified"  # password for FileDaemon
>   File Retention = 30 days# 30 days
>   Job Retention = 6 months# six months
>   AutoPrune = yes # Prune expired Jobs/Files
> }
> 
> # Definition of file storage device
> Storage {
>   Name = FileNAS
>   Address = bigfilemachine.whatever.com# N.B. Use a fully 
> qualified name here
>   SDPort = 9103
>   Password = "modified"  
>   Device = FileStorageNAS
>   Media Type = File
> }
> 
> Pool {
>   Name = NAS-Files
>   Maximum Volume Jobs = 1
>   Pool Type = Backup
>   Recycle = yes   # Bacula can automatically recycle 
> Volumes
>   AutoPrune = yes # Prune expired volumes
>   VolumeRetention = 60 days
>   Accept Any Volume = yes # write on any volume in the pool
>   Maximum Volumes = 100
>   LabelFormat = "Volume"
> }

Re: [Bacula-users] Pool problem (can't swim?)

2006-03-20 Thread Ger Apeldoorn
Hi Arno, Thanks for your response!

> Baffled? Yes, that too, but don't forget it's been a weekend!
:)

> The configuration only shows me that you've got the pools in question
> defined... more interesting would be the information how you started the
> job. If you do this via command line, or through a schedule, and what
> the actual run command was...

I run it from a schedule, I even tried to specify the pool, but it does not 
work.

Schedule {
  Name = "WeeklyNASCycle"
  Run = Level=Full Pool=NAS-Files sun at 23:05
  Run = Level=Differential Pool=NAS-Files mon-sat at 23:05
}

Stat from SD:
%<---
Writing: Differential Backup job ntserv0NAS JobId=893 Volume=""
pool="Default" device=""FileStorageNAS" (/data/bacula)"
Files=0 Bytes=0 Bytes/sec=0
FDReadSeqNo=6 in_msg=6 out_msg=4 fd=6


Jobs waiting to reserve a drive:
   3608 JobId=977 wants Pool="NAS-Files" but have Pool="Default" on drive 
"FileStorageNAS" (/data/bacula).
   3607 JobId=977 wants Vol="Volume0002" drive has Vol="" on drive 
"FileStorageNAS" (/data/bacula).

%<---

Thanks,
Ger.


> Arno
>
> >>This is the STAT from the SD:
> >>%<---
> >> nas-sd Version: 1.38.5 (18 January 2006) i686-pc-linux-gnu
> >> debian testing/unstable
> >>Daemon started 16-Mar-06 11:25, 1 Job run since started.
> >>
> >>Running Jobs:
> >>Writing: Full Backup job job1 JobId=838 Volume=""
> >>pool="Default" device=""FileStorageNAS" (/data/bacula)"
> >>Files=0 Bytes=0 Bytes/sec=0
> >>FDReadSeqNo=6 in_msg=6 out_msg=4 fd=6
> >>Writing: Full Backup job job2 JobId=840 Volume=""
> >>pool="Default" device=""FileStorageNAS" (/data/bacula)"
> >>Files=0 Bytes=0 Bytes/sec=0
> >>FDReadSeqNo=6 in_msg=6 out_msg=4 fd=8
> >>
> >>(%<)
> >>
> >>
> >>Jobs waiting to reserve a drive:
> >>   3608 JobId=888 wants Pool="NAS-Files" but have Pool="Default" on drive
> >>"FileStorageNAS" (/data/bacula).
> >>   3607 JobId=888 wants Vol="Volume0002" drive has Vol="" on drive
> >>"FileStorageNAS" (/data/bacula).
> >>
> >>
> >>Device status:
> >>Device "FileStorageNAS" (/data/bacula) is not open or does not exist.
> >>Device is BLOCKED waiting for media.
> >>
> >>%<---
> >>
> >>
> >>Here is relevant stuff from my bacula-sd.conf on the NAS:
> >>It is configured to automatically create a new volume for each job.
> >>%<---
> >> Storage { # definition of myself
> >>  Name = bigfilemachine-sd
> >>  SDPort = 9103  # Director's port
> >>  WorkingDirectory = "/var/bacula/working"
> >>  Pid Directory = "/var/run"
> >>  Maximum Concurrent Jobs = 20
> >>}
> >>
> >>Device {
> >>  Name = FileStorageNAS
> >>  Media Type = File
> >>  Archive Device = /path/bacula
> >>  LabelMedia = yes;   # lets Bacula label unlabeled media
> >>  Random Access = Yes;
> >>  AutomaticMount = yes;   # when device opened, read it
> >>  RemovableMedia = no;
> >>  AlwaysOpen = no;
> >>}
> >>%<---
> >>
> >>
> >>Here's the directors config:
> >>%<---
> >> JobDefs {
> >>  Name = "DefaultNASJob"
> >>  Type = Backup
> >>  Level = Differential
> >>  Client = minime-fd
> >>  FileSet = "minime"
> >>  Schedule = "WeeklyCycle"
> >>  Storage = FileNAS
> >>  Messages = Standard
> >>  Pool = NAS-Files
> >>  Priority = 10
> >>}
> >>
> >>Job {
> >>  Name = "testmachineNAS"
> >>  Client = testmachine-fd
> >>  JobDefs = "DefaultNASJob"
> >>  FileSet = "testmachine"
> >>  Write Bootstrap = "/var/bacula/working/testmachine.bsr"
> >>}
> >>
> >>FileSet {
> >>  Name = "testmachine"
> >>  Include {
> >>Options { signature = MD5
> >>  compression=GZIP }
> >>File = /etc
> >>  }
> >>}
> >>
> >>Client {
> >>  Name = testmachine-fd
> >>  Address = testmachine.whatever.com
> >>  FDPort = 9102
> >>  Catalog = MyCatalog
> >>  Password = "modified"  # password for FileDaemon
> >>  File Retention = 30 days# 30 days
> >>  Job Retention = 6 months# six months
> >>  AutoPrune = yes # Prune expired Jobs/Files
> >>}
> >>
> >># Definition of file storage device
> >>Storage {
> >>  Name = FileNAS
> >>  Address = bigfilemachine.whatever.com# N.B. Use a fully
> >>qualified name here
> >>  SDPort = 9103
> >>  Password = "modified"
> >>  Device = FileStorageNAS
> >>  Media Type = File
> >>}
> >>
> >>Pool {
> >>  Name = NAS-Files
> >>  Maximum Volume Jobs = 1
> >>  Pool Type = Backup
> >>  Recycle = yes   # Bacula can automa

Re: [Bacula-users] Pool problem (can't swim?)

2006-03-20 Thread Ger Apeldoorn
Hi Arno,

> Ok, so this looks like the SD is kind of confused.
>
> I assume you do have volumes for both pools, and all the volumes are
> heoreticall (from Baculas point of view) available to the SD. This
> depends mainly on the media type, I think, but the storage the media is
> assigned to might also be important. 

The Default pool only contains tapes. The NAS is not equipped with a 
tapestreamer...

> So you should have the existing 
> volume files for the pool you want to use in the directory /data/bacula

I've got one, but I want it to create a volume automagically for each job.

> (your configuration, though, shows this as /path/bacula, which might be
> related to this problem...)

In my configfile, it is set correctly. I went through the config files and 
replaced some values with bogus ones to mislead potential hackers. I 
should've been more consequent.

> What I would do, after checking the setup and possibly restarting he
> daemons: Try unmounting the storage device and mounting again. The SD
> should try to access the right volume then.

I did, and it didn't... Got this lovely message instead ;)

--%<---
mount
The defined Storage resources are:
 1: File
 2: FileNAS
 3: DDS-4
Select Storage resource (1-3): 2
3001 OK mount. Device="FileStorageNAS" (/data/bacula)
21-Mar 08:01 nas-sd: Job ntserv2NAS.2006-03-20_23.05.05 waiting. Cannot find 
any appendable volumes.
Please use the "label"  command to create a new Volume for:
Storage:  "FileStorageNAS" (/data/bacula)
Media type:   File
Pool: Default
--%<---

> If this doesn't work, try running the SD with debug output and see what
> that reports. Your problem description is a little similar to one I
> observed with a beta version, by the way, but I'm using tape volumes.

Here's the output:
--%<---
nas-sd: dircmd.c:187 Message channel init completed.
nas-sd: dircmd.c:513 Found device FileStorageNAS
nas-sd: dircmd.c:710 Device already unmounted
nas-sd: cram-md5.c:52 send: auth cram-md5 <[EMAIL PROTECTED]> ssl=0
nas-sd: cram-md5.c:68 Authenticate OK [EMAIL PROTECTED]@[EMAIL PROTECTED]
nas-sd: cram-md5.c:114 sending resp to challenge: [EMAIL PROTECTED]@[EMAIL 
PROTECTED]
nas-sd: dircmd.c:187 Message channel init completed.
nas-sd: dircmd.c:513 Found device FileStorageNAS
--%<---

> The current -beta6 might resolve this problem, but I will know more
> tomorrow after my more difficult schedules are run...

Eh.. This is used in a production environment... Is the beta6 version safe to 
use?

Thanks again,
Ger.



---
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


Re: [Bacula-users] Pool problem (can't swim?)

2006-03-21 Thread Ger Apeldoorn
Hi!

I think I cracked it..

I had 2 file storage devices. (on different machines)
For both resources, I had the resourcetype "File" configured. Now, I changed 
the type for the NAS-SD to FileNAS and it seems to work... 

Thanks for your help,
Ger.

Op dinsdag 21 maart 2006 08:14, schreef Ger Apeldoorn:
> Hi Arno,
>
> > Ok, so this looks like the SD is kind of confused.
> >
> > I assume you do have volumes for both pools, and all the volumes are
> > heoreticall (from Baculas point of view) available to the SD. This
> > depends mainly on the media type, I think, but the storage the media is
> > assigned to might also be important.
>
> The Default pool only contains tapes. The NAS is not equipped with a
> tapestreamer...
>
> > So you should have the existing
> > volume files for the pool you want to use in the directory /data/bacula
>
> I've got one, but I want it to create a volume automagically for each job.
>
> > (your configuration, though, shows this as /path/bacula, which might be
> > related to this problem...)
>
> In my configfile, it is set correctly. I went through the config files and
> replaced some values with bogus ones to mislead potential hackers. I
> should've been more consequent.
>
> > What I would do, after checking the setup and possibly restarting he
> > daemons: Try unmounting the storage device and mounting again. The SD
> > should try to access the right volume then.
>
> I did, and it didn't... Got this lovely message instead ;)
>
> --%<---
> mount
> The defined Storage resources are:
>  1: File
>  2: FileNAS
>  3: DDS-4
> Select Storage resource (1-3): 2
> 3001 OK mount. Device="FileStorageNAS" (/data/bacula)
> 21-Mar 08:01 nas-sd: Job ntserv2NAS.2006-03-20_23.05.05 waiting. Cannot
> find any appendable volumes.
> Please use the "label"  command to create a new Volume for:
> Storage:  "FileStorageNAS" (/data/bacula)
> Media type:   File
> Pool: Default
> --%<---
>
> > If this doesn't work, try running the SD with debug output and see what
> > that reports. Your problem description is a little similar to one I
> > observed with a beta version, by the way, but I'm using tape volumes.
>
> Here's the output:
> --%<---
> nas-sd: dircmd.c:187 Message channel init completed.
> nas-sd: dircmd.c:513 Found device FileStorageNAS
> nas-sd: dircmd.c:710 Device already unmounted
> nas-sd: cram-md5.c:52 send: auth cram-md5 <[EMAIL PROTECTED]> ssl=0
> nas-sd: cram-md5.c:68 Authenticate OK [EMAIL PROTECTED]@[EMAIL PROTECTED]
> nas-sd: cram-md5.c:114 sending resp to challenge: [EMAIL PROTECTED]@[EMAIL 
> PROTECTED]
> nas-sd: dircmd.c:187 Message channel init completed.
> nas-sd: dircmd.c:513 Found device FileStorageNAS
> --%<---
>
> > The current -beta6 might resolve this problem, but I will know more
> > tomorrow after my more difficult schedules are run...
>
> Eh.. This is used in a production environment... Is the beta6 version safe
> to use?
>
> Thanks again,
> Ger.
>
>
>
> ---
> 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



---
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


Re: [Bacula-users] Pool problem (drowned)

2006-03-21 Thread Ger Apeldoorn
Hi Arno,

Last night, the normal scheduled job kicked in and wanted pool "default" 
again.  :(

If I start a job with the run command, a new volume is made in the correct 
pool automatically... A scheduled job to the second file based storage also 
asks for Default pool.

> good to hear... I just started looking through your configuration again...
>
> I just re-read parts of the manual, and I think the requirement of
> different Media Types for different file storage devices is mentioned
> there clear enough. If you didn't understand the corresponding
> paragraphs, you might have a suggestion how to improve that part of the
> text!

Oh... I missed that...
>
>
> Concerning your latest question of 1.38.6-beta6 being stable enough for
> a production system: Probably not, but _you_ setup wasn't producing
> anything, too, so you wouldn't lose anything through it :-)

Thats right, but the backup to tape works fine! :)

Any thoughts? 

Thanks,
Ger.



---
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


Re: [Bacula-users] Pool problem (drowned)

2006-03-22 Thread Ger Apeldoorn
Op woensdag 22 maart 2006 11:01, schreef Arno Lehmann:
Hi,

> The only idea I have is that you still have volumes with the (by now)
> wrong MediaType setting. Have you restarted the DIR and the SDs? Also,
> keep in mind that the volume metadata is stored in the catalog and you
> have to manually update it.

I restarted DIR and SD after configuring it and deleted the volumes with the 
wrong MediaType setting. 

What I find most peculiar is that if I run the job manually, everything is 
ok.. It only affects the ones started through the schedule

Ger



---
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


Re: [Bacula-users] Pool problem (drowned)

2006-03-22 Thread Ger Apeldoorn
I'll just go eat my hat...

This was in my config file

JobDefs {
  Name = "DefaultNASJob"
  Type = Backup
  Level = Differential
  Client = beagle-fd
  FileSet = "beagle"
  Schedule = "WeeklyCycle"
  Storage = FileNAS
  Messages = Standard
  Pool = NAS-Files
  Priority = 10
}

The schedule should be WeeklyNASCycle In the WeeklyCycle, the pool was 
overruled with Pool=Monthly/Weekly/Daily... 

Doh! 

Anyway, that was the explanation that it only went wrong when using a 
schedule... I was using the wrong one!

Arno, thanks a lot for your help!

Greetings,
Ger.

Op woensdag 22 maart 2006 12:35, schreef Arno Lehmann:
> Hi,
>
> On 3/22/2006 11:31 AM, Ger Apeldoorn wrote:
> > Op woensdag 22 maart 2006 11:01, schreef Arno Lehmann:
> > Hi,
> >
> >>The only idea I have is that you still have volumes with the (by now)
> >>wrong MediaType setting. Have you restarted the DIR and the SDs? Also,
> >>keep in mind that the volume metadata is stored in the catalog and you
> >>have to manually update it.
> >
> > I restarted DIR and SD after configuring it and deleted the volumes with
> > the wrong MediaType setting.
> >
> > What I find most peculiar is that if I run the job manually, everything
> > is ok.. It only affects the ones started through the schedule
>
> Ok, so please use the 'show job=xxx' command. If you don't see the
> problem please post the resulting output, perhaps someone else sees
> what's wrong.
>
> Arno
>
> > Ger
> >
> >
> >
> > ---
> > 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



---
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


Re: [Bacula-users] Re: S. Scripts to BAckup on USB Harddisks

2006-03-23 Thread Ger Apeldoorn
Hi Barry,

I dont know if Robert wants to use that approach, but it sure is what i'm 
looking for.. So if you could tell us how you got your hal daemon to create 
and mount your USB disks that would be great!

I am using Ubuntu btw.

Many thanks,

Ger.

Op vrijdag 24 maart 2006 00:33, schreef Barry L. Bond:
> Hi Robert!
>
> >Das anyone has Scripts to mount these Harddisks and reports me errors it
> >they are not ready connected?
>
>  I use bacula to backup to two different USB hard disks, both of which
> are attached to my computer, but only on one day each week.  My schedule
> is set to backup to one on Saturday and the other on Tuesday.  (I do a
> full on the first Saturday or Tuesday of the month, and a differential
> thereafter.)
>
>  I suspect I will be able to help you on this.
>
>  A couple of questions, to help figure out what you want...
>
>  I don't exactly have scripts.  I figured out how to get my hald (HAL
> daemon) to create and mount my USB disks to two, different, paths.  Then,
> my bacula schedule has them backing up to that path, and if by some
> chance, the pathlist isn't there, the backup fails.  (This is what I
> want.)
>
>  Questions for you... what operating system are you using?  I'm using
> Fedora Core 4 Linux, and I figured out how to get hald to recognize the
> specific USB disk being powered on, and create the directory and mount the
> USB disk to that pathlist.  I can unmount the USB disk, and turn them off,
> and hald removes the directory.
>
>  Would you be interested in the same, or a similar approach?
>
>  Barry



---
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


Re: [Bacula-users] Issue with restoring using WX-Console on Windows

2006-04-05 Thread Ger Apeldoorn
Did you by any chance back it up with backslashes instead of forward slashes?

e.g. File = C:\temp is wrong, it should be C:/temp

You'll only notice that when you are selecting files to restore.

Ger.

Op donderdag 6 april 2006 02:42, schreef Tristram Cheer:
> Hi guys,
>
> I'm using the latest build of WX-Console on windows XP from SF.net
> (1.38.6) When i try to enter restore mode i select the client etc etc
> and i'm presented with the selection screen, trouble is i can only
> select the entire backup, there is no list of files or anything. when i
> try and add files i get the following error
>
> "Couldn't retrieve information about list control item 10858488"
>
> I need a gui for the PHB's so they can restore files but i would like to
> not have to restore an entire backup to do so. The backup is done with a
> WinXP FD client and is restoring to a WinXP FD client
>
> Anyone got any ideas?
>
> Regards
>
> Tristram Cheer
>
>
> ---
> 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



---
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