[Bacula-users] A typo in documentation

2011-03-03 Thread Jeronimo Zucco
 Just to contrib:

 In bacula docs, in url: 
http://www.bacula.org/5.0.x-manuals/en/main/main/Catalog_Maintenance.html#SECTION004592000

 In the line:

"CREATE INDEX Path on Path (Path(255);"

 Change it for:

"CREATE INDEX Path on Path (Path(255));"

A missed ")" in the end of sql.

Best regards.

-- 

Jeronimo Zucco - CISSP
Universidade de Caxias do Sul - NPDU
http://jczucco.blogspot.com


--
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula Enhancements Request

2010-03-18 Thread Jeronimo Zucco
On 03/16/2010 03:40 PM, Phil Stracchino wrote:
> On 03/16/10 14:15, Gavin McCullagh wrote:
>
>> On Tue, 16 Mar 2010, Bob Cousins wrote:
>>  
>>> - Explicit capturing of boot and partitioning information for easier
>>> bare metal restores. (Bare metal restores should be easy and fast for
>>> all OSes, but that is easier said than done.)
>>>
>> Do you mean backing up the MBR?  That might be nice alright.
>>  
> Doing this portably is actually a rather difficult problem because there
> are so many different partitioning schemes and partition table formats
> out there.  It's a mess.
>

Or we can used partimage based schema:

http://www.partimage.org/Partimage-manual_Backup-partition-table


-- 
Jeronimo Zucco - CISSP
Universidade de Caxias do Sul - NPDU
http://jczucco.blogspot.com


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Very slow restores after upgraded to 5.0.0

2010-02-24 Thread Jeronimo Zucco
 Thanks for your tip. I've created the index as mentioned in the  
thread, but my restores still very slow. I'm not using accurate backups.

May be I have to migrate from mysql to postgres, my database are  
MyISAM with 60 gb of data. Or else downgrade back to 3.0.3 version.

Any other tip ?

best regards.

Citando Henrik Johansen :

> Hi,
>
> On 02/24/10 05:03 PM, Jeronimo Zucco wrote:
>>   Hi list.
>>
>>   I'm trying to do some restores in my setup, but after I've upgraded
>> to 5.0.0 version, the restore take a very, very long time in "Building
>> directory tree for JobId...", even in small sets of files.
>>
>>   I was using 3.0.3 version, and the restore was very fast.
>
> Check the archive for this month - there was a thread titled "Dead slow
> backups with bacula 5.0, mysql ..." which suggests adding some extra
> indexes.
>
> Perhaps that'll do the trick for you ...
>
>>   Follow bellow the MySQL command generated:
>>
>> SELECT Path.Path, Filename.Name, Temp.FileIndex, Temp.JobId, LStat, MD5
>> FROM ( SELECT FileId, Job.JobId AS JobId, FileIndex, File.PathId AS
>> PathId, File.FilenameId AS FilenameId, LStat, MD5 FROM Job, File, (
>> SELECT MAX(JobTDate) AS JobTDate, PathId, FilenameId FROM ( SELECT
>> JobTDate, PathId, FilenameId FROM File JOIN Job USING (JobId) WHERE
>> File.JobId IN (82184) UNION ALL SELECT JobTDate, PathId, FilenameId FROM
>> BaseFiles JOIN File USING (FileId) JOIN Job  ON(BaseJobId =
>> Job.JobId) WHERE BaseFiles.JobId IN (82184) ) AS tmp GROUP BY PathId,
>> FilenameId ) AS T1 WHERE (Job.JobId IN ( SELECT DISTINCT BaseJobId FROM
>> BaseFiles WHERE JobId IN (82184)) OR Job.JobId IN (82184)) AND
>> T1.JobTDate = Job.JobTDate AND Job.JobId = File.JobId AND T1.PathId =
>> File.PathId AND T1.FilenameId = File.FilenameId ) AS Temp JOIN Filename
>> ON (Filename.FilenameId = Temp.FilenameId) JOIN Path ON (Path.PathId =
>> Temp.PathId) WHERE FileIndex>  0 ORDER BY Temp.JobId, FileIndex
>>
>>   * in this case, I was trying to restore the jobID 82184.
>>
>> Any tips ?
>>
>> Thanks.
>>
>
>
> --
> Med venlig hilsen / Best Regards
>
> Henrik Johansen
> hen...@scannet.dk
> Tlf. 75 53 35 00
>
> ScanNet Group
> A/S ScanNet
>
> --
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>



-- 
Jeronimo Zucco
Universidade de Caxias do Sul - NPDU

http://jczucco.blogspot.com

---
Essa mensagem foi enviada pelo UCS Mail


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Very slow restores after upgraded to 5.0.0

2010-02-24 Thread Jeronimo Zucco
 Hi list.

 I'm trying to do some restores in my setup, but after I've upgraded 
to 5.0.0 version, the restore take a very, very long time in "Building 
directory tree for JobId...", even in small sets of files.

 I was using 3.0.3 version, and the restore was very fast.

 Follow bellow the MySQL command generated:

SELECT Path.Path, Filename.Name, Temp.FileIndex, Temp.JobId, LStat, MD5 
FROM ( SELECT FileId, Job.JobId AS JobId, FileIndex, File.PathId AS 
PathId, File.FilenameId AS FilenameId, LStat, MD5 FROM Job, File, ( 
SELECT MAX(JobTDate) AS JobTDate, PathId, FilenameId FROM ( SELECT 
JobTDate, PathId, FilenameId FROM File JOIN Job USING (JobId) WHERE 
File.JobId IN (82184) UNION ALL SELECT JobTDate, PathId, FilenameId FROM 
BaseFiles JOIN File USING (FileId) JOIN Job  ON(BaseJobId = 
Job.JobId) WHERE BaseFiles.JobId IN (82184) ) AS tmp GROUP BY PathId, 
FilenameId ) AS T1 WHERE (Job.JobId IN ( SELECT DISTINCT BaseJobId FROM 
BaseFiles WHERE JobId IN (82184)) OR Job.JobId IN (82184)) AND 
T1.JobTDate = Job.JobTDate AND Job.JobId = File.JobId AND T1.PathId = 
File.PathId AND T1.FilenameId = File.FilenameId ) AS Temp JOIN Filename 
ON (Filename.FilenameId = Temp.FilenameId) JOIN Path ON (Path.PathId = 
Temp.PathId) WHERE FileIndex > 0 ORDER BY Temp.JobId, FileIndex

 * in this case, I was trying to restore the jobID 82184.

Any tips ?

Thanks.

-- 
Jeronimo Zucco
Universidade de Caxias do Sul - NPDU


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] LTO-4

2009-10-22 Thread Jeronimo Zucco
Ralf Gross escreveu:
> Bernardus Belang (Berni) schrieb:
>   
>> I just want to know, whether or not IBM or HP LTO-4 tape drive connected 
>> to  RedHat Enterprise Linux 5 will work with Bakula ?
>> 
I've tested a IBM TS3200 Tape Library Express Model  ( 
http://www-03.ibm.com/systems/be/storage/tape/ts3200/index.html ) 
connected by optical fibre in the HBA server (DAS), and running tests 
without problem.



-- 
Jeronimo Zucco
Universidade de Caxias do Sul - NPDU


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


Re: [Bacula-users] Execution order of scheduled jobs

2009-07-23 Thread Jeronimo Zucco
I forgot to mention of priority detail. I'm using the same priority,  
because of concurrent jobs. I'm running 4 concurrent jobs, and if I  
change the priority, one priority have to finish all the jobs to start  
other priority. This is not what I want to do, I want running  
concurrent jobs, but in a pre-determinated order.


Citando Steve Thompson :

> On Thu, 23 Jul 2009, Jeronimo Zucco wrote:
>
>> I did'nt find how to do that. I've tried to change the order of my
>> Jobs directive and Client in bacula-dir.conf, but without efect. My
>> question is:
>>
>> How bacula determine order of execution of scheduled jobs with use the
>> same schedule ? Is it based in a sql query, or order of declaration os
>> some directive in bacula-dir ? What directive ?
>
> In my experience, jobs of the same priority always start in the order
> in which they are defined in bacula-dir.conf. Did you reload the
> director after changing the order?
>

Yes, I did. And the clients and jobs that I've put in the end come to  
the beggining of scheduled jobs. I really don't understand how bacula  
determine this order of execution of scheduled jobs with same priority.



-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Universidade de Caxias do Sul - NPDU

http://jczucco.blogspot.com

---
Essa mensagem foi enviada pelo UCS Mail


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


[Bacula-users] Execution order of scheduled jobs

2009-07-23 Thread Jeronimo Zucco

Hi, list.

I'm using bacula 3.0.X with mysql database. My settings of diary  
backups using the same schedule (it starts all backups on the same  
time), but I want to run the scheduled backups in a pre-determinated  
order.

Example: my backups of 20 clients starts at 00:10, but I want run  
host1 first, then hosts2, host3, etc...

I did'nt find how to do that. I've tried to change the order of my  
Jobs directive and Client in bacula-dir.conf, but without efect. My  
question is:

How bacula determine order of execution of scheduled jobs with use the  
same schedule ? Is it based in a sql query, or order of declaration os  
some directive in bacula-dir ? What directive ?

Thanks for your help.


-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Universidade de Caxias do Sul - NPDU

http://jczucco.blogspot.com

---
Essa mensagem foi enviada pelo UCS Mail



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


Re: [Bacula-users] Performance with MySQL queries since 3.0.0 (Dir inserting attributes hang)

2009-06-23 Thread Jeronimo Zucco

Citando James Harper :


> Does MySQL have a 'profiler' tool like MSSQL does? I spend most of my
> time in MSSQL and if some operation is running slow I just attach the
> profiler to it and capture the queries and focus on the ones that are
> taking most of the time.
>
> James


What is the impact of use this option in my.cnf:

low_priority_updates=1

I ran a lot of concurrent jobs, and this option help me in mysql  
performance issues.



-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Universidade de Caxias do Sul - NPDU

http://jczucco.blogspot.com

---
Essa mensagem foi enviada pelo UCS Mail



--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] performance issues

2007-12-13 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Bob Cregan wrote:
> Hi We have just started to use bacula as our backup solution and
> are suffering some performance problems. The details are
>
> Server: Debian 4.0 running bacula 2.2.4 is multihomed as it  backs
> up over two networks. Storage is Overland Arcvault24 on same host
> Database is mysql:

May be the problem is mysql configuration. Make a test with
my-medium.cnf or  my-large.cn (included in mysql-server package) in
your my.cnf

- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHYWaTWi/PuDd2cZARAtliAJ0doRFM+Lxbte+dSltJGBgzLUTR6QCcDlWd
QPzZDDY43h4K8DJWcpxHatw=
=0zLo
-END PGP SIGNATURE-


-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Error in compiling Bacula-2.2.6

2007-11-28 Thread Jeronimo Zucco
mevasquez wrote:
> When I run make everything is OK except I get an error compiling stored.   My
> configure options are:
>  CFLAGS="-g -Wall" \
>   ./configure \
> --sbindir=/opt/bacula/bin \
> --sysconfdir=/opt/bacula \
> --with-scriptdir=/opt/bacula/scripts \
> --with-pid-dir=/var/run \
> --with-subsys-dir=/var/lock/subsys \
> --enable-smartalloc \
> --enable-gnome \
> --enable-static-tools \
> --with-mysql \
> --with-working-dir=/opt/bacula/working \
> [EMAIL PROTECTED] \
> [EMAIL PROTECTED] \
> --with-smtp-host=localhost 
>
> When I run make here are the errors.
>   

Did you install  openssl and openssl-devel packages ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] SAN Autoloader in a Fibre Channel

2007-11-05 Thread Jeronimo Zucco
Answer to my self :

Jeronimo Zucco escreveu:
> Hi, list.
>
> Somebody have used bacula with a SAN Fibre Channel autoloader ?
>   
Yes

> How is it works ?
>   
http://sourceforge.net/mailarchive/message.php?msg_id=Pine.LNX.4.64.0710261639240.9145%40mssllu

> Is it supported by bacula ? What model of autoloader are you using ?
>
> Clients plugged in a SAN sent directly to autoloader, or sent first 
> to bacula server plugged in a SAN and then sent to autoloader?
>   
http://sourceforge.net/mailarchive/message.php?msg_name=462DE045.6010408%40its-lehmann.de



Sorry I didn't use the list archive before.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


[Bacula-users] SAN Autoloader in a Fibre Channel

2007-11-05 Thread Jeronimo Zucco
Hi, list.

Somebody have used bacula with a SAN Fibre Channel autoloader ?

How is it works ?

Is it supported by bacula ? What model of autoloader are you using ?

Clients plugged in a SAN sent directly to autoloader, or sent first 
to bacula server plugged in a SAN and then sent to autoloader?

I have many questions about this issue, I will be glad if someone 
can help me.

Thank you.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


[Bacula-users] Bacula works with Dell Powervault TL2000 and TL4000 ?

2007-09-27 Thread Jeronimo Zucco
I'm making a research to supported LTO-4 autoloaders that works fine 
with bacula.  HP Storage works MSL2024 and 4048 works ok, I 've founded 
in list archives.

But I didn't found about the new LTO-4 Dell autoloaders, TL2000 and 
TL4000. Someone use this hardware with bacula? Is it works ok?

Beyond these autoloaders, someone use another LTO-4 tape autoloader 
to suggest a buy ?

May be is time to update this site: 
http://www.bacula.org/rel-manual/Supported_Tape_Drives.htmlCan I 
help to update this site ?

Thank you for your attention.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


Re: [Bacula-users] Unstable network causing too many tapes to end up with error status

2007-09-25 Thread Jeronimo Zucco
>
> On the SD log:
>
> 21-Sep 22:08 lab02-sd: Committing spooled data to Volume "LTO_0002". 
> Despooling 1,172,134,636 bytes ...
> 21-Sep 22:11 lab02-sd: Committing spooled data to Volume "LTO_0002". 
> Despooling 2,780,433,476 bytes ...
> 21-Sep 22:14 lab02-sd: Sending spooled attrs to the Director. Despooling 309 
> bytes ...
> 21-Sep 21:30 21-Sep 06:33 21-Sep 05:57 lab02-sd: Writing spooled data to 
> Volume. Despooling 5,014,740,654 bytes ...
> 23-Sep 10:28 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:28 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
> 23-Sep 10:28 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:28 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
> 23-Sep 10:30 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:30 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
> 23-Sep 10:30 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:30 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
> 23-Sep 10:30 lab02-sd: Volume "LTO_0002" previously written, moving to end of 
> data.
> 23-Sep 10:31 lab02-sd: MDS513_TS_SYSTEM.2007-09-21_23.01.01 Error: I cannot 
> write on Volume "LTO_0002" because:
> The number of files mismatch! Volume=11 Catalog=10
> 23-Sep 10:31 lab02-sd: Marking Volume "LTO_0002" in Error in Catalog.
> 23-Sep 10:32 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:32 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
> 23-Sep 10:32 lab02-sd: 3307 Issuing autochanger "unload slot 2, drive 0" 
> command.
> 23-Sep 10:32 lab02-sd: 3304 Issuing autochanger "load slot 8, drive 0" 
> command.
> 23-Sep 10:33 lab02-sd: 3305 Autochanger "load slot 8, drive 0", status is OK.
> 23-Sep 10:33 lab02-sd: 3301 Issuing autochanger "loaded drive 0" command.
> 23-Sep 10:33 lab02-sd: 3302 Autochanger "loaded drive 0", result is Slot 8.
> 23-Sep 10:33 lab02-sd: Recycled volume "LTO_0008" on device "LTO" 
> (/dev/nst0), all previous data lost.
> 23-Sep 10:33 lab02-sd: Spooling data ...
> 23-Sep 10:33 lab02-sd: Spooling data ...
> 23-Sep 10:33 lab02-sd: Spooling data ...
>
> Here are full configuration and log files, I just changed the passwords
> and tried to hide the file names on the error messages:
>
>   http://mds510.mds.gov.br/~kov/bacula-info.tar.gz
>
> Anyone has any insight on how we could make Bacula be tougher when these
> kinds of network errors happen? Perhaps by adopting the catalog or tape
> as canonical and updating the other, instead of marking the tape as in
> error? Also, any insight on what is happening to the SD? I am thinking
> about limiting the number of concurrent jobs on the SD to 1 to see if it
> helps, does that make sense to you?
>
>   

Hi Gustavo. I'm from Brazil too :-)

Did you think about create another network just for backups ?  Today 
servers comming with two network cards, and you can use this network 
just for backup and avoid this problems you have.

I also recommend you to upgrade to 2.2.4 version, because of serious 
bug #935:

http://www.bacula.org/downloads/bug-935.txt


   

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


Re: [Bacula-users] how to build bat in ubuntu 7.04 ?

2007-09-12 Thread Jeronimo Zucco
Benjamin E. Zeller escreveu:
> OK, here you go:
>
> http://sourceforge.net/mailarchive/message.php?msg_id=46CAB20B.9070107%40ma-c.de
>
> Sorry for my mistake. Just proceed as described in there, worked for me on 
> Ubuntu 7.04
>
>   

Yes ! Now bat compile and is working.

Thanks a lot.


-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


Re: [Bacula-users] how to build bat in ubuntu 7.04 ?

2007-09-12 Thread Jeronimo Zucco
Benjamin E. Zeller escreveu:
>> This tips are for debian lenny, not for Ubuntu. I have tried to
>> search libqwt5-qt4-dev package for ubuntu, but it don't exists for
>> ubuntu 7.04.
>> 
>
> They worked on Ubuntu,too!
>
>   

Ok, I do believe in you :-)

But where did you get the qwt4 includes and libraries for ubuntu? What 
qt packages do you have installed in your ubuntu desktop ?

I have this packages installed:

# dpkg -l  |  grep qt4  |  cut -d\  -f3

libqt4-core
libqt4-dev
libqt4-gui
libqt4-qt3support
libqt4-sql
python-qt4
qt4-designer

Can you send me a copy of Makefile and bat.pro ?

Thank you.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


Re: [Bacula-users] how to build bat in ubuntu 7.04 ?

2007-09-12 Thread Jeronimo Zucco
Benjamin E. Zeller escreveu:
> On Wednesday 12 September 2007 15:02:54 Jeronimo Zucco wrote:
>   
>> Hi list.
>>
>> Someone have a guide or "stone-path" for compile bat in kubuntu 7.04 ?
>>
>> I'm lost with all options of qt's libraries and devel packages.
>>
>> Thank you.
>> 
>
> http://sourceforge.net/mailarchive/message.php?msg_id=46D58259.7070205%40iunius.org
>
> Worked for me on Ubuntu, so should work on Kubuntu,too.
>   
This tips are for debian lenny, not for Ubuntu. I have tried to 
search libqwt5-qt4-dev package for ubuntu, but it don't exists for 
ubuntu 7.04.

I have downloaded the depkgs-09Sep07.tar.gz from bacula, and copy 
qwt/include to /usr/include/qwt-qt4. I have changed Makefile and bat.pro:

INCPATH   = -I/usr/share/qt4/mkspecs/linux-g++ -I. 
-I/usr/include/qt4/QtCore -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtGui -I/usr/include/qt4/QtGui -I/usr/include/qt4 
-I.. -I. -Iconsole -Irestore -Iselect -I/usr/include/qwt-qt4 -Imoc -Iui
LIBS  = $(SUBLIBS) -L../lib -lbac -L/usr/lib -lqwt -lQtGui 
-lQtCore -lpthread
QMAKE = /usr/bin/qmake-qt4


bat.pro:
INCLUDEPATH += /usr/include/qwt-qt4

But when I compile, get this error:

g++  -o bat obj/main.o obj/bat_conf.o obj/mainwin.o obj/qstd.o 
obj/pages.o obj/dircomm.o obj/dircomm_auth.o obj/authenticate.o 
obj/console.o obj/prerestore.o obj/restore.o obj/brestore.o obj/label.o 
obj/relabel.o obj/mount.o obj/run.o obj/runcmd.o obj/estimate.o 
obj/prune.o obj/select.o obj/medialist.o obj/mediaedit.o obj/joblist.o 
obj/clients.o obj/storage.o obj/fileset.o obj/joblog.o obj/jobs.o 
obj/restoretree.o obj/jobplot.o obj/help.o obj/moc_mainwin.o 
obj/moc_dircomm.o obj/moc_console.o obj/moc_restore.o obj/moc_label.o 
obj/moc_relabel.o obj/moc_mount.o obj/moc_run.o obj/moc_select.o 
obj/moc_medialist.o obj/moc_mediaedit.o obj/moc_joblist.o 
obj/moc_clients.o obj/moc_storage.o obj/moc_fileset.o obj/moc_joblog.o 
obj/moc_jobs.o obj/moc_restoretree.o obj/moc_jobplot.o obj/moc_help.o 
obj/qrc_main.o   -L../lib -lbac -L/usr/lib -lqwt -lQtGui -lQtCore -lpthread
obj/jobplot.o: In function `JobPlot::byteCheckChanged(int)':
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:536: 
undefined reference to `QwtPlotItem::attach(QwtPlot*)'
obj/jobplot.o: In function `JobPlot::fileCheckChanged(int)':
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:521: 
undefined reference to `QwtPlotItem::attach(QwtPlot*)'
obj/jobplot.o: In function `JobPlot::setSymbolType(int, int)':
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:503: 
undefined reference to `QwtPlotCurve::setSymbol(QwtSymbol const&)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:507: 
undefined reference to `QwtPlotCurve::setSymbol(QwtSymbol const&)'
obj/jobplot.o: In function `JobPlot::setPlotType(QString)':
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:435: 
undefined reference to 
`QwtPlotCurve::setCurveAttribute(QwtPlotCurve::CurveAttribute, bool)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:436: 
undefined reference to 
`QwtPlotCurve::setCurveAttribute(QwtPlotCurve::CurveAttribute, bool)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:441: 
undefined reference to 
`QwtPlotCurve::setCurveAttribute(QwtPlotCurve::CurveAttribute, bool)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:442: 
undefined reference to 
`QwtPlotCurve::setCurveAttribute(QwtPlotCurve::CurveAttribute, bool)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:448: 
undefined reference to `QwtPlotCurve::setStyle(QwtPlotCurve::CurveStyle)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:449: 
undefined reference to `QwtPlotCurve::setStyle(QwtPlotCurve::CurveStyle)'
obj/jobplot.o: In function `JobPlot::addCurve()':
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:358: 
undefined reference to `QwtLegend::QwtLegend(QWidget*)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:358: 
undefined reference to `QwtPlot::insertLegend(QwtLegend*, 
QwtPlot::LegendPosition, double)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:368: 
undefined reference to `QwtPlotCurve::QwtPlotCurve(QString const&)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:369: 
undefined reference to `QwtPlotCurve::setPen(QPen const&)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:370: 
undefined reference to `QwtPlotCurve::setCurveType(QwtPlotCurve::CurveType)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:371: 
undefined reference to `QwtPlotItem::setYAxis(int)'
/usr/local/src/bacula-2.2.3/src/qt-console/jobgraphs/jobplot.cpp:373: 
undefined referen

[Bacula-users] how to build bat in ubuntu 7.04 ?

2007-09-12 Thread Jeronimo Zucco
Hi list.

Someone have a guide or "stone-path" for compile bat in kubuntu 7.04 ?

I'm lost with all options of qt's libraries and devel packages.

Thank you.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


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


Re: [Bacula-users] Netware Volumes/eDirectory

2007-06-25 Thread Jeronimo Zucco
Jeffrey C. Baldwin escreveu:
> I'm sure the question has been answered a thousand times
>
> But, here it goes again, can Bacula be used to backup Netware servers?
>
> I did some searching via Google, and found some older mailing list
> threads that suggested it might be possible, even something that
> mentioned Novell themselves might be interested in working with the
> Bacula developers to make it happen.
>
> Anyhow... I appreciate any input/information on backing up Novell
> servers via Bacula.  In our network we have Windows, Linux, Solaris...
> but Netware is the primary file/print servers.
>
> I did find some Suse RPM's, which led me to believe it *might* be
> possible now.
>
>   
You can use ncpfs or NFS to do this, mounting the volumes with a 
RunBeforeJob script.

In my experience, NFS is much faster than ncp.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Feature sugestion: restore of most recent version of file

2007-05-30 Thread Jeronimo Zucco
Sometimes users remove files accidentally (or no) and after a long 
time, they ask for admins to restore the last version of  specified 
file. Admins have to search one jobId in a lot of backups for a client 
by try-error to find the last version of file.

I suggest a restore option for solve this issue:

- Select the most recent backup for a especified file for  a client


Best regards,

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] A new GUI were born

2007-05-25 Thread Jeronimo Zucco
May be is too alpha code. I try to run, but freeze after connect to 
director.  What is the e-mail of JavaBacula developer ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] [+] mount command syntax

2007-03-23 Thread Jeronimo Zucco
Rui Goncalves escreveu:
> Hi all,
>  
> I'm new in Bacula. ( vers. 1.38.2)
>  
> I'm testing a restore and I get this msg:
>  
> For this problem wich is  the correct syntax for mount command.
>  
> 23-Mar 17:41 lis-backup-sd: Please mount Volume "UG2034L1" on Storage 
> Device "Drive-1" (/dev/nst0) for Job RestoreFiles.2007-03-23_17.40.30
>  
> Automatic Mount defined on bacula-sd.conf
>  
> BACULA_DIR.conf
>
> Storage {
>   Name = "HP"
>   Maximum Concurrent Jobs = 4
>   Device = Drive-1  # must be same as Device in 
> Storage daemon
>   Media Type = DLT-8000
>   Address = lis-backup# N.B. Use a fully qualified 
> name here
>   SDPort = 9103
>   Password = "XXX"  # password for Storage daemon
>   AutoChanger = yes
> }
>  
> Regards
>
> */Rui Gonçalves/*
>
> 
>
> -
> 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
>   
Try to run "update slots" before mount.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] [+] mount command syntax

2007-03-23 Thread Jeronimo Zucco
Rui Goncalves escreveu:
> Hi all,
>  
> I'm new in Bacula. ( vers. 1.38.2)
>  
> I'm testing a restore and I get this msg:
>  
> For this problem wich is  the correct syntax for mount command.
>  
> 23-Mar 17:41 lis-backup-sd: Please mount Volume "UG2034L1" on Storage 
> Device "Drive-1" (/dev/nst0) for Job RestoreFiles.2007-03-23_17.40.30
>  
> Automatic Mount defined on bacula-sd.conf
>  
> BACULA_DIR.conf
>
> Storage {
>   Name = "HP"
>   Maximum Concurrent Jobs = 4
>   Device = Drive-1  # must be same as Device in 
> Storage daemon
>   Media Type = DLT-8000
>   Address = lis-backup# N.B. Use a fully qualified 
> name here
>   SDPort = 9103
>   Password = "XXX"  # password for Storage daemon
>   AutoChanger = yes
> }
>  
> Regards
>
> */Rui Gonçalves/*
>
> 
>
> -
> 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
>   
The volume UG2034L1 is in your autochanger ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Ubuntu 6.06 dependency issues

2007-03-17 Thread Jeronimo Zucco
Sherman Boyd escreveu:
> I'm trying to install Bacula 2.0.3 on Ubuntu.  I can't seem to locate
> some of the dependencies.  OpenSSL doesn't give me support for TLS and
> Encryption.  I can't find conio or readlines, although I'm not so sure
> I need them.  I also would like to enable ACL support.  It would be
> nice if I could install all the dependencies with apt-get, if
> possible.  Does anyone know which packages I need to install?
>
> I'm brand new to Bacula so if there are any other Bacula/Ubuntu
> gotchas I'd like to hear about it.
>
> PS. I'm working on a document describing howto install Bacula on
> Ubuntu.  It's a bit of a mess but it documents what I've done so far,
> so I'll drop it under my signature, please feel free to comment.
>
>   
You need to install the packages:

- build-essential
- libssl-dev
- openssl

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] upgrade from 1.38.9 to 2.0.3 and moving to a newserver

2007-03-12 Thread Jeronimo Zucco
I think the easiest way is move and then upgrade.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


 
Jeff Dickens escreveu:
> I need to move my bacula server to a new machine, and while I'm at it I 
> want to upgrade to 2.0.3.   What would be the best approach - move and 
> then upgrade, or upgrade and then move, or install the new server with 
> 2.0.3 and then move/upgrade the database?
>
>
>
> -
> 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
>   



-
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] Wait to reserve a device in weekly full backups

2007-02-22 Thread Jeronimo Zucco
Arno Lehmann escreveu:
> This in turn looks like Bacula simply didn't know the tape was in the 
> autochanger.
>   
> Is the catalog up to date, i.e. does Bacula know about the inventory of 
> the autochanger? You update that information using the 'update slots' 
> command.
>
>   
Yes, I did it. I update with 'update slots' command. The tapes of weekly 
backups was displayed with update.

I also try  to reboot bacula server, without success, same problem 
happened. :-(

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Wait to reserve a device in weekly full backups

2007-02-22 Thread Jeronimo Zucco
I've Pools of backup DIARY (Diferential) and WEEKLY (Full). In the 
end of week, bacula stoped with the following messages:

10-Feb 18:00 bacula-dir: Start Backup JobId 20128, 
Job=NikeJob.2007-02-10_18.00.00
10-Feb 18:00 bacula-sd: Job NikeJob.2007-02-10_18.00.00 waiting to 
reserve a device.
10-Feb 18:00 bacula-dir: Start Backup JobId 20129, 
Job=DionisioJob.2007-02-10_18.00.01
10-Feb 18:00 bacula-sd: Job DionisioJob.2007-02-10_18.00.01 waiting to 
reserve a device.
10-Feb 18:00 bacula-dir: Start Backup JobId 20130, 
Job=TeseuJob.2007-02-10_18.00.02
10-Feb 18:00 bacula-sd: Job TeseuJob.2007-02-10_18.00.02 waiting to 
reserve a device.

The device is my autoloader, it isnt busy. To run the backups, I had 
to mount mannualy the tapes with the command "mount".

Why is this happened ? Why bacula did not mount automatic ? This 
issue happened after I upgrade to bacula 2.0.2 (I used bacula 1.38.11 
before). In the DIARY backups, this issue not happened.


-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Wait to reserve a device in weekly full backups

2007-02-15 Thread Jeronimo Zucco
I've Pools of backup DIARY (Diferential) and WEEKLY (Full). In the 
end of week, bacula stoped with the following messages:

10-Feb 18:00 bacula-dir: Start Backup JobId 20128, 
Job=NikeJob.2007-02-10_18.00.00
10-Feb 18:00 bacula-sd: Job NikeJob.2007-02-10_18.00.00 waiting to 
reserve a device.
10-Feb 18:00 bacula-dir: Start Backup JobId 20129, 
Job=DionisioJob.2007-02-10_18.00.01
10-Feb 18:00 bacula-sd: Job DionisioJob.2007-02-10_18.00.01 waiting to 
reserve a device.
10-Feb 18:00 bacula-dir: Start Backup JobId 20130, 
Job=TeseuJob.2007-02-10_18.00.02
10-Feb 18:00 bacula-sd: Job TeseuJob.2007-02-10_18.00.02 waiting to 
reserve a device.

The device is my autoloader, it isnt busy. To run the backups, I had 
to mount mannualy the tapes with the command "mount".

Why is this happened ? Why bacula did not mount automatic ? This 
issue happened after I upgrade to bacula 2.0.2 (I used bacula 1.38.11 
before). In the DIARY backups, this issue not happened.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Cant configure Bacula 2.0.2: Error: Unable to findGnome 2 installation

2007-02-07 Thread Jeronimo Zucco
You can use:

/configure --prefix=/usr --sbindir=/usr/sbin --sysconfdir=/etc/bacula 
--with-scriptdir=/etc/bacula --enable-smartalloc --with-mysql 
--with-working-dir=/var/bacula --with-pid-dir=/var/run 
--with-subsys-dir=/var/lock/subsys --enable-conio --with-openssl

Michael Bates escreveu:
> Dear Bacula
>
> I can't configure Bacula on my server running Ubuntu 6.10.  The error 
> that I get is "Unable to find Gnome 2 installation"
>
> I am new to Bacula and so please excuse any obvious oversight.
>
> The command that run is as follows:
>
> [EMAIL PROTECTED]:/home/michael/Michaels_Stuff/Bacula/bacula-2.0.2# 
> ./configure --sbindir=$HOME/bacula/bin 
> --sysconfdir=$HOME/bacula/bin --with-pid-dir=$HOME/bacula/bin 
> --with-subsys-dir=$HOME/bacula/bin 
> --with-sqlite3=$HOME/depkgs/sqlite3 --enable-gnome 
> --with-working-dir=$HOME/bacula/bin/working --with-dump-email= 
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 
> --with-smtp-host=smtp.gmail.com <http://smtp.gmail.com>
> checking for true... /bin/true
> checking for false... /bin/false
> configuring for bacula 2.0.2 (28 January 2007)
> checking for gcc... gcc
> checking for C compiler default output file name... a.out
> checking whether the C compiler works... yes
> checking whether we are cross compiling... no
> checking for suffix of executables...
> checking for suffix of object files... o
> checking whether we are using the GNU C compiler... yes
> checking whether gcc accepts -g... yes
> checking for gcc option to accept ISO C89... none needed
> checking for g++... g++
> checking whether we are using the GNU C++ compiler... yes
> checking whether g++ accepts -g... yes
> checking whether gcc and cc understand -c and -o together... yes
> checking how to run the C preprocessor... gcc -E
> checking for grep that handles long lines and -e... /bin/grep
> checking for egrep... /bin/grep -E
> checking whether gcc needs -traditional... no
> checking for g++... /usr/bin/g++
> checking for a BSD-compatible install... /usr/bin/install -c
> checking for ranlib... ranlib
> checking for mv... /bin/mv
> checking for rm... /bin/rm
> checking for cp... /bin/cp
> checking for sed... /bin/sed
> checking for echo... /bin/echo
> checking for cmp... /usr/bin/cmp
> checking for tbl... /usr/bin/tbl
> checking for ar... /usr/bin/ar
> checking for openssl... /usr/bin/openssl
> checking for mtx... /usr/sbin/mtx
> checking for dd... /bin/dd
> checking for mkisofs... /usr/bin/mkisofs
> checking for python... /usr/bin/python
> checking for growisofs... /usr/bin/growisofs
> checking for dvd+rw-mediainfo... /usr/bin/dvd+rw-mediainfo
> checking for dvd+rw-format... /usr/bin/dvd+rw-format
> checking for pkg-config... /usr/bin/pkg-config
> checking for wx-config... wx-config
> checking for cdrecord... /usr/bin/cdrecord
> checking for pidof... /bin/pidof
> checking for gawk... gawk
> checking for gawk... /usr/bin/gawk
> checking build system type... i686-pc-linux-gnu
> checking host system type... i686-pc-linux-gnu
> checking for Operating System Distribution... done
> checking whether make sets $(MAKE)... yes
> checking whether NLS is requested... yes
> checking for msgfmt... /usr/bin/msgfmt
> checking for gmsgfmt... /usr/bin/msgfmt
> checking for xgettext... /usr/bin/xgettext
> checking for msgmerge... /usr/bin/msgmerge
> checking for ld used by GCC... /usr/bin/ld
> checking if the linker (/usr/bin/ld) is GNU ld... yes
> checking for shared library run path origin... done
> checking for CFPreferencesCopyAppValue... no
> checking for CFLocaleCopyCurrent... no
> checking whether NLS is requested... yes
> checking for GNU gettext in libc... yes
> checking whether to use NLS... yes
> checking where the gettext function comes from... libc
> checking for msgfmt... (cached) /usr/bin/msgfmt
> configure: error: Unable to find Gnome 2 installation
>
> 
>
> -
> 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
>   


-- 
Jeroni

Re: [Bacula-users] Authorization Errors after upgrade to 2.0.2

2007-02-01 Thread Jeronimo Zucco
Alan, thank you very much for your help. I built bacula from source, and 
I will try this.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com



Alan Davis escreveu:
>   
>> ShivaJob.2007-02-01_02.05.00 Fatal error: Socket error on Storage
>> 
> command:
>   
>> ERR=No data available 01-Feb 03:12 bacula-dir: 
>> ShivaJob.2007-02-01_02.05.00
>> Error: Bacula 2.0.2 (28Jan07): 01-Feb-2007 03:12:11
>> 
>
> This is the /real/ error and it does indicate that your RunBeforeJob is
> taking longer than 30 minutes. 
>
> I ran into this same error a few days ago when I was working with /very/
> large file lists.
>
> There isn't an SD directive to make it wait more than 30 minutes, it's
> hardcoded into the SD.
>
> If you are running from bacula built from source you can change it in
> the .../src/stored/job.c file, recompile the SD and install the modified
> SD.
>
> If you are using bacula installed from RPM you will need the source RPM
> (SRPM) and work through the standard source to binary build process.
>
> The relevant lines are :
>
>gettimeofday(&tv, &tz); 
>timeout.tv_nsec = tv.tv_usec * 1000; 
>timeout.tv_sec = tv.tv_sec + 30 * 60;/* wait 30 minutes */ 
>  
>Dmsg1(100, "%s waiting on FD to contact SD\n", jcr->Job); 
>/* 
> * Wait for the File daemon to contact us to start the Job, 
> *  when he does, we will be released, unless the 30 minutes 
> *  expires. 
> */ 
>P(mutex); 
>for ( ;!job_canceled(jcr); ) { 
>   errstat = pthread_cond_timedwait(&jcr->job_start_wait, &mutex,
> &timeout); 
>   if (errstat == 0 || errstat == ETIMEDOUT) { 
>  break; 
>   } 
>} 
>V(mutex);
>
>
> Stop the SD.
> Save a copy of job.c
> Change the 30 to something larger - 90 would make it wait for 90
> minutes.
> In the .../src/stored directory run "make && make install"
> Start the SD.
>
>
>
>
>
> 
> Alan Davis
> Senior Architect
> Ruckus Network, Inc.
> 703.464.6578 (o)
> 410.365.7175 (m)
> [EMAIL PROTECTED]
> alancdavis AIM
>  
>
>
>
>
>
> -
> 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
>   



-
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] Authorization Errors after upgrade to 2.0.2

2007-02-01 Thread Jeronimo Zucco
Kern Sibbald escreveu:
> If your RunBeforeScript runs more than 30 minutes (it is possible this is 20 
> minutes, I forget the exact delay), this will happen.  Since the FD must 
> connect to the SD within 30 minutes and the FD does not connect to the SD 
> until after the RunBeforeScript completes.
>
>   
Thank you for your answer.

This script take more than one hour, this is a dump of my oracle 
servers. I use directive ClientRunBeforeJob.

Any option to increase this delay, or other way to do that in the new 
version ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com



-
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] Authorization Errors after upgrade to 2.0.2

2007-02-01 Thread Jeronimo Zucco
Hi, list.

I was using bacula-1.38.11, and then this week I upgraded to 2.0.2.

I make backups for many servers using bacula without problems, but I 
am receiving Authorization Errors when I run scripts before job, like this:

01-Feb 03:59 shiva-fd: ClientRunBeforeJob: . exporting statistics
01-Feb 03:59 shiva-fd: ClientRunBeforeJob: Export terminated successfully 
without warnings.
01-Feb 04:09 shiva-fd: ShivaJob.2007-02-01_02.05.00 Fatal error: Authorization 
key rejected by Storage daemon.
Please see http://www.bacula.org/rel-manual/faq.html#AuthorizationErrors for 
help.
01-Feb 04:09 shiva-fd: ShivaJob.2007-02-01_02.05.00 Fatal error: Failed to 
authenticate Storage daemon.
01-Feb 03:12 bacula-dir: ShivaJob.2007-02-01_02.05.00 Fatal error: Socket error 
on Storage command: ERR=No data available
01-Feb 03:12 bacula-dir: ShivaJob.2007-02-01_02.05.00 Error: Bacula 2.0.2 
(28Jan07): 01-Feb-2007 03:12:11


If I made backup without RunBeforeJob, the backup works fine. Stat 
client works, bconsole from server to backup server works too.

I have other backups running ok, but without RunBeforeJob directive, 
just my 3 servers with I need this feature I have problem.

Is it a bug, or I am missing something ?

I already do all of 
http://www.bacula.org/rel-manual/faq.html#AuthorizationErrors without 
success :-( In bacula 1.38.11 version this backups works ok.

Any tip ?

Thank you all.
 

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Novell client

2007-01-03 Thread Jeronimo Zucco
I use NFS to make backups of novell servers. Novell share volumes with NFS,
configure it to share for your IP of bacula server read-only.

You can use ncpfs to mount volumes too, but it is very slow than NFS.

--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


Citando [EMAIL PROTECTED]:

> I was going to search the forums on this, but it comes up with a 500
> internal server error.
>
> Just wondering if a new client has become available, so I can back up a
> Novell server??
>
>
> Raymond
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
>
> -
> 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
>



This message was sent using IMP, the Internet Messaging Program.


-
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] Nagios monitoring bacula - service dependencies

2006-12-18 Thread Jeronimo Zucco
Hi, all.

   I have problem using service dependencies. I have a backup server 
(bacula), and I check status of backup through a mysql query ( 
http://darcs.complete.org/debian/bacula.upstream/examples/nagios.txt ) 
on server bacula using nrpe in server bacula.

   I have many others servers with I do backups in bacula (like server1 
below), then I check status of backup of this server, with this definition:

define service{
   use generic-service ; Name of 
service template to use
   nameTEMPLATE-REMOTE-BACULA-BACKUP
   service_description Backup
   is_volatile 0
   check_period24x7
   max_check_attempts  4
   normal_check_interval   5
   retry_check_interval1
   notification_optionsw,u,c,r
   notification_interval   0
   notification_period 24x7
   register0
   }

define service{
   use TEMPLATE-REMOTE-BACULA-BACKUP
   host_nameserver1
   contact_groupsadmins
   register1
   check_command   check_remote_bacula_server1Job
   }

define servicedependency{
   host_name   server1
   service_description Backup
   dependent_host_name bacula
   dependent_service_description   PING
   execution_failure_criteria  u,c
   notification_failure_criteria   w,u,c
   }

   I configure service dependency because when I shutdown bacula/mysql 
server, I got many notifications about backups. What is wrong in my 
definition of service dependency ? I want no notifications when bacula 
server is down.

Thank you.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Why this volume was purged ?

2006-08-14 Thread Jeronimo Zucco
   I have a pool, called SemanalPar, and some jobs and volumes 
associated with this pool:

Pool {
  Name = SemanalPar
  Pool Type = Backup
  AutoPrune = yes
  VolumeRetention = 1 year
  Recycle = yes
  Cleaning Prefix = CLN
}


Client with use this Pool:

Client {
  Name = nix-fd
  Address = nix.ucs.br
  FDPort = 9102
  Catalog = MyCatalog
  Password = "Xx"
  File Retention = 365 days
  Job Retention = 60 months
  AutoPrune = yes
  Maximum Concurrent Jobs = 1
}


Job:

Job {
  Name = "NixJob"
  Type = Backup
  Level = Differential
  Client = nix-fd
  FileSet = "Set Nix"
  Schedule = "Ciclo"
  Storage = Autoloader-1
  Messages = Standard
  Pool = DiarioImpar
  Priority = 7
  Write Bootstrap = "/var/bacula/Nix.bsr"
  SpoolData = yes
  Spool Attributes = yes
  Maximum Concurrent Jobs = 3
}


Schedule:

Schedule {
  Name = "Ciclo"
  Run = Level=Full Storage=Autoloader-1 Pool=SemanalPar 2nd sat at 18:00
  Run = Level=Full Storage=Autoloader-1 Pool=SemanalPar 4th sat at 18:00
}


List volumes show:

Pool: SemanalPar
+-++---+-+--+--+-+--+---+---+-+
| MediaId | VolumeName | VolStatus | VolBytes| VolFiles | 
VolRetention | Recycle | Slot | InChanger | MediaType | 
LastWritten |
+-++---+-+--+--+-+--+---+---+-+
|  14 | PHG188L2   | Append|  43,761,455,445 |   43 |
2,592,000 |   1 |   10 | 1 | LTO   | 2006-08-13 12:59:38 |
|  32 | QVD018L2   | Full  | 301,483,430,639 |  308 |
2,592,000 |   1 |9 | 1 | LTO   | 2006-07-22 20:12:41 |
|  47 | QVD027L2   | Purged| 197,848,381,701 |  208 |
2,592,000 |   1 |   11 | 1 | LTO   | 2006-07-08 18:03:33 |
|  57 | PHG185L2   | Purged|  90,256,217,485 |   91 |
2,592,000 |   1 |   12 | 1 | LTO   | 2006-07-10 13:45:13 |
|  62 | QVD033L2   | Full  | 315,390,199,636 |  318 |
2,592,000 |   1 |   13 | 1 | LTO   | 2006-08-13 12:19:58 |
|  74 | QVD038L2   | Full  | 330,392,519,543 |  334 |
2,592,000 |   1 |   14 | 1 | LTO   | 2006-07-25 23:31:47 |
+


I received this message:

11-Aug 18:50 bacula-dir: Pruned 12 Jobs on Volume "QVD027L2" from catalog.
11-Aug 18:50 bacula-dir: There are no Jobs associated with Volume 
"QVD027L2". Marking it purged.


Why this volume was purged, only 1 month after the last backup in this 
volumes, maked in 2006-07-08 18:03:33  I configure to retain files 
for 365 days and jobs for 60 months !!

What I made is wrong ? The volume retention is defined only when volume 
is labeled, I can't change after labeled volume ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Error before end of tape

2006-07-10 Thread Jeronimo Zucco
I run a job mannualy, and get the following error:

10-Jul 10:14 bacula-sd: MidasJob.2006-07-10_10.02.11 Error: Unable to 
position to end of data on device "Drive-1" (/dev/nst0): ERR=dev.c:839 
ioctl MTEOM error on "Drive-1" (/dev/nst0). ERR=Input/output error.

10-Jul 10:14 bacula-sd: Marking Volume "PHG185L2" in Error in Catalog.


Teh volume PHG185L2 is not in the end. I try to restart bacula server, 
check tables, turn on and off my tape library, but the error persist.

What can I do in this case ?

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


-
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] Bacula install in Ubuntu 5.10

2006-05-30 Thread Jeronimo Zucco
Install libmysqlclient15-dev before compile.

-- 
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com

Danie wrote:
> 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] Support of HP StorageWorks MSL2024 Tape Library

2006-05-22 Thread Jeronimo Zucco

Bacula supports HP StorageWorks MSL2024 Tape Library?

This library:
http://h18004.www1.hp.com/products/storageworks/msl2024/index.html?jumpid=reg_R1002_USEN

--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


---
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&kid0709&bid&3057&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] One drive for each server or one drive for multiple servers?

2006-05-04 Thread Jeronimo Zucco
I use pools with diferential backups diary odd and even pools, and full 
weekly and monthly pools to avoid this problem.


--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com


Heitor Faria wrote:


I think it´s cheaper (and very more practical) to do backups of multiple 
servers in only one set of tapes, with only one director.

But some people is worried about the safety of the data.
Anyway, what is better?

Heitor Faria
Salvador - Bahia - Brazil
1 Drive Dlt, 1 Set of tapes, 16 Servers backuped
GFS - Daily (dif), Weekly (full), Mounthly (full)




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





---
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&kid0709&bid&3057&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backuping Netware Server

2006-05-04 Thread Jeronimo Zucco

Hi, Heitor.

Do you load module ipx before ipx_configure ?  Do you have the package 
ncpfs installed in yor Linux ?


--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com



Heitor Faria wrote:

Hi folks...

I am trying to backup Netware 6.5 volumes, mapping then on a Linux station.
I did a mount scrip (with Novell login and password), it seens to work 
nice.
On the Red Hat Enterprise 4, i got a problem... (could not find the 
server).

I search in the Internet and found the solution:
# ipx_configure --auto_interface=on --auto_primary=on
Than, i got another error  - the Red Hat don´t recognize this command.
Can anyone tell me how to solve this? I think there is a rpm package 
with ipx configurations tools that can save me... : /


Heitor Faria
Salvador - Bahia - Brazil
1 drive dlt 80, 16 servers backuped already
GFS - daily (dif), weekly (full), mounthly (full)




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





---
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&kid0709&bid&3057&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Tape write Error

2006-04-24 Thread Jeronimo Zucco

   I am usiing bacula 1-38.8 in both server and client sides.

   I have started mannualy a lot of jobs at the same time, and I use 
Maximum Concurrent Jobs = 3 on Director and Jobs.


   The jobs started to write on my autoloader, and after same time I 
received the following error message :


24-Apr 20:23 bacula-dir: Start Backup JobId 10711, 
Job=PanJob.2006-04-24_20.23.57
24-Apr 20:23 bacula-dir: Recycled volume "QVD018L2"
24-Apr 20:24 bacula-sd: 3301 Issuing autochanger "loaded drive 0" command.
24-Apr 20:24 bacula-sd: 3302 Autochanger "loaded drive 0", result is Slot 2.
24-Apr 20:24 bacula-sd: 3307 Issuing autochanger "unload slot 2, drive 0" 
command.
24-Apr 20:24 bacula-sd: 3304 Issuing autochanger "load slot 3, drive 0" command.
24-Apr 20:25 bacula-sd: 3305 Autochanger "load slot 3, drive 0", status is OK.
24-Apr 20:25 bacula-sd: 3301 Issuing autochanger "loaded drive 0" command.
24-Apr 20:25 bacula-sd: 3302 Autochanger "loaded drive 0", result is Slot 3.
24-Apr 20:25 bacula-sd: Recycled volume "QVD018L2" on device "Drive-1" 
(/dev/nst0), all previous data lost.
24-Apr 20:25 bacula-sd: Spooling data ...
24-Apr 20:42 bacula-sd: Committing spooled data to Volume "QVD018L2". 
Despooling 10,129,370,527 bytes ...
24-Apr 20:49 bacula-sd: PanJob.2006-04-24_20.23.57 Error: block.c:538 Write error at 
5:6674 on device "Drive-1" (/dev/nst0). ERR=Input/output error.
24-Apr 20:56 bacula-sd: PanJob.2006-04-24_20.23.57 Error: Backspace file at EOT 
failed. ERR=Input/output error
24-Apr 20:56 bacula-sd: End of medium on Volume "QVD018L2" Bytes=5,430,168,334 
Blocks=84,173 at 24-Apr-2006 20:56.


The tape showed in the message has 400Gb, but just was writed 5Gb and marked 
tape with error, after skip for the next tape of my Pool.

This problem ocours because bacula try to write at the same time in the same tape ? 


Or because in my configuration I specified in Director Maximum Concurrent Jobs 
= 3 ?


Thank you for your help.

--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

http://jczucco.blogspot.com 




---
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&kid0709&bid&3057&dat1642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Intervention nEEDED

2005-10-07 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Add another volume in the pool or recyle mannualy one tape:

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



- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com


Michael Reith wrote:
> 07-Oct 03:52 archie-sd: Job Trance_Firewall_Backup.2005-10-01_01.05.10
> waiting. Cannot find any appendable volumes.
> Please use the "label"  command to create a new Volume for:
>Storage:  FileStorage
>Media type:   File
>Pool: Default
> 
> Ok, I'm not quite sure what this means.. it has been working fine for
> about 20-25 days, and all of a sudden this comes up..
> Any thoughts..
> 
> 
> 
> ---
> This SF.Net email is sponsored by:
> Power Architecture Resource Center: Free content, downloads, discussions,
> and more. http://solutions.newsforge.com/ibmarch.tmpl
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDRrQ+TCq0VJ4DIPwRAj6RAJwLMlUf8Xw/Gn6FmLVuxt/LUJKfnACgg3Kp
Xx87sFWeVdu0njAW5JXRyPU=
=eWdM
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Is 1.37.38 stable *enough* ?

2005-09-13 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I am running 1.37.38 version of bacula without problems, with more then
20 servers and 2 autoloaders with 16 tapes, 6 pools (diferential diary
even/odd, full weekly even/odd, full month even/odd).


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Mike wrote:
> Hello,
>  
> I'm going to be setting up a new backup "system" for my work in the next
> couple of days,
> and I'm interested in using a new (1.37.38) version of Bacula (as I'm
> interested in the
> database changes, and the SSL support)- but I'm a little wary since
> 1.37.38 is still
> flagged as beta-
>  
> Is there anybody running the 1.37 strain in production? Is there any
> major known
> issues that would make we want to avoid this release?
>  
> I'd rather not have to install 1.36, then upgrade the
> database/clients/etc once a (possibly)
> more stable release comes out.
>  
> Thanks for your help,
>  
> Cheers,
>  
> Mike Pultz
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDJrZOTCq0VJ4DIPwRAgMXAJ0TSgixb/ZWWg2mnAftY+75oRHjOQCbBQLE
xtRI7stynx2jhsMMzKipoN0=
=oYaC
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Trouble installing bacula with MySQL

2005-09-05 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Install package mysql-devel.

- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Jason Yau wrote:
> Hi,
> 
> I am having trouble installing Bacula on FC2. I can't use the latest
> rpms, since they are all built for newer packages that are in FC3 or
> FC4, so I am attempting to compile on my own.
> 
> I installed the mysql and mysql-devel RPM pacakages, and I have verified
> that mysql.h is located in /usr/include/mysql.
> 
> Command taken from default config:
>   ./configure \
> --sbindir=$HOME/bacula/bin \
> --sysconfdir=$HOME/bacula/bin \
> --with-pid-dir=$HOME/bacula/bin/working \
> --with-subsys-dir=$HOME/bacula/bin/working \
> --enable-smartalloc \
> --enable-gnome \
> --enable-static-tools \
> --with-mysql=/usr/include/mysql/ \
> --with-working-dir=$HOME/bacula/bin/working \
> [EMAIL PROTECTED] \
> [EMAIL PROTECTED] \
> --with-smtp-host=localhost
> 
> Error:
> checking for MySQL support... no
> configure: error: Invalid MySQL directory /usr/include/mysql/ - unable
> to find m
> ysql.h under /usr/include/mysql/
> 
> Any help greatly appreciated.
> 
> Jason



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDHEgxTCq0VJ4DIPwRAkSYAJ4x7FTlHmyi1BMZFrQGwcZG/TLUrgCgouDC
xnZINbamEtJgBhGOmtuWXNA=
=8/R3
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Backup Mysql Database Files

2005-09-02 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

You only can copy the database files for mysql if table type is MyISAM.
If you use innodb, only dump or using software InnoDB Hot Backup (it is
not GPL).
You can dump with lock database (is available only for queries in this
time) for prevent not integrity corrupted.

- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Philipp Steinkrueger wrote:
> Hi,
> 
> Jonas Björklund wrote:
> 
>> Hello,
>>
>> On Fri, 2 Sep 2005, Philipp Steinkrueger wrote:
>>
>>> if i want to backup a server running a mysql-db and i just backup
>>> all the mysql-db-files, do i risk to save a corrupted version? i read
>>> in the manual about the VSS problematic and save state in RDBMS
>>> on windows, but in my case, the mysql db runs on linux.
>>
>>
>>
>> You can't.
>>
> what do you mean, that i cannot ? I can copy the files perfectly on
> linux and
> i cant perfectly restore them. the question is what the risk it...
> 
> 
> Greetings,
> Philipp
> 
> 
> 
> 
> ---
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users




-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDGEGhTCq0VJ4DIPwRAlAoAKDjgoQovmT2mONn4eEHWx78YJlJcgCdF80Z
tKYR1Ytfc4yFuqYJNfXl+Po=
=1aik
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula not seeing media in the library

2005-09-01 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

You try mount the tape mannualy ?

Also, if the 104L2 have an old backup, may be your retention
configuration not allowed to save on this tape, then you have the purge
the tape.


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Beren Gamble wrote:
> Hi Guys,
> 
> I've got an Adic i2000 tape library with 5 slots and one tape unit allocated 
> to Bacula.
> 
> I've got media in my library:
> 
> *list media
> Pool: Daily
> +-++---+-+--+--+-+--+---+---+-+
> | MediaId | VolumeName | VolStatus | VolBytes| VolFiles | 
> VolRetention | Recycle | Slot | InChanger | MediaType | LastWritten |
> +-++---+-+--+--+-+--+---+---+-+
> |   1 | 000103L2   | Full  | 364,484,700,828 |  384 |
> 1,036,800 |   1 |2 | 1 | LT02  | 2005-08-06 00:12:21 |
> |   2 | 000104L2   | Append|  52,084,439,230 |   55 |
> 1,036,800 |   1 |3 | 1 | LT02  | 2005-08-08 21:00:06 |
> |   3 | 000105L2   | Full  | 359,595,695,826 |  375 |
> 1,036,800 |   1 |4 | 1 | LT02  | 2005-08-11 21:47:03 |
> |   4 | 000106L2   | Append|   1 |0 |
> 1,036,800 |   1 |5 | 1 | LT02  | -00-00 00:00:00 |
> |   5 | 000107L2   | Append|   1 |0 |
> 1,036,800 |   1 |6 | 1 | LT02  | -00-00 00:00:00 |
> +-++---+-+--+--+-+--+---+---+-+
> 
>  but when I run a job this comes up.
> 
> 01-Sep 00:00 backup2-sd: Please mount Volume "000104L2" on Storage Device 
> "ULTRIUM" for Job HPOPENVIEW-Daily.2005-08-31_21.00.01
> 
> I just need another set of eyes looking at this.. it's probably something 
> stupid.
> 
> This media has status of "append", any ideas why it's not seeing it? Oh, and 
> i've done "update slots".
> 
> 
> 
> 
> ***
> Mail FROM London Borough of Harrow:
> Unencrypted electronic mail is not secure and may not be authentic, in whole 
> or in part. You are advised to check directly with the sender before acting 
> upon any e-mail received. 
> 
> The information contained in this message and any attachments is confidential 
> and is intended for receipt by the above named addressee(s) only. If you have 
> otherwise encountered this message please notify its originator via +44(0)20 
> 8863 5611 at LONDON BOROUGH OF HARROW. The unauthorised use, disclosure, 
> copying or alteration of this message is strictly forbidden. The  views 
> expressed within this message are those of the individual sender and not 
> necessarily those of Harrow Council.
> 
> Mail TO London Borough of Harrow:
> London Borough of Harrow monitors all electronic mail it receives for Policy 
> compliance and to protect its systems including anti-spam and anti-virus 
> measures. 
> 
> Electronic mail does not guarantee delivery, nor notification of 
> non-delivery. It is suggested you contact your intended recipient(s) by other 
> means should confirmation of receipt be important.
> ***
> 
> 
> 
> ---
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFyhwTCq0VJ4DIPwRAuLdAJsHnP5IGoh5gNP3fkG2/rHP/xG7UwCg8BKM
m5/t1ckhe5T+PsHcbf5AutY=
=fp3O
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula performance

2005-08-31 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I use openvpn (http://openvpn.net) in some bacula clients to bacula
server with lzo compression without encrypt, and the transfer time
decrease a lot. I recommend if your data transfer are big.


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Uwe Hees wrote:
> Hello,
> 
> Am 30.08.2005 um 18:15 schrieb Kern Sibbald:
> 
>>
>> Perhaps you didn't read the ReleaseNotes where I indicate that SQLite3
>> in my 
>> tests was 4 to 10 times slower than SQLite 2.  
>>
>> Try SQLite 2 or MySQL.
> 
> 
> I used sqlite3 mainly because it came preinstalled with MacOS 10.4.
> Meanwhile I have installed MySQL for other reasons and tried bacula with
> it. The result was a double in performance up to ~120kB/sec.
> 
> While running the backup job I noticed that "netstat" reported 32768
> entries in the send queue of the bacula-fd. I tried to backup to a
> remote sd (running under Linux on a 200Mhz/PPC603e, i.e. not a powerful
> box) and got ~520kB/sec.
>  
>  
> Am 30.08.2005 um 20:46 schrieb Arno Lehmann:
> 
>> Also, don't forget that notebook HDs (2.5") are usually a lot slower
>> than than desktop or even server disks... and in backing up the same
>> machine, you use the slow disk three times: reading, writing, database.
> 
> 
> The disk has a random read/write performance of about 10 MB/sec.
> 
>> Now, I don't have disk performance comparisons between an iBook and a
>> more typical server setup, but I'd bet that the iBook is really slow
>> in comparison...
>>
>> about 650 kB/s is what I get storing the (dumped) catalog database on
>> my backupserver - the server is slower than your iBook, but still this
>> is what the tape drive can handle - but this server only does the
>> backups, the catalog is on another machine, and there are no other
>> processes using lots of memory or bus throughput.
>>
>> In short: Try it with a setup which resembles your planned use of
>> bacula, and with some consideration you will get good results.
> 
> 
> Backing up my (and my wife's) notebook to an external disk is exactly
> what I intend to do at home. There's no tape drive involved. As for the
> company, the backup tape drive is not yet purchased.
> 
> Greetings,
> Uwe
> 



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFerKTCq0VJ4DIPwRAitpAKCWWozvCRvWIsx3UGZVkhSArAG03gCgnIMY
vWLOganSNJOLD9CpCqrhVig=
=ZY/w
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Yeaah !!! This is a problem!

Then on my script to start bacula, I unset the environment variable with
  the command "unset LANG" before start bacula.

On version 1.36.30, this is not happens.

Thank you Philip and Kern for your help.

Include my name for bacula test list users :-)

- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Jeronimo Zucco wrote:
>   When I save the e-mail, the date are correct, but the e-mail I receive,
> become with date 10/28/47... Then the server translate to 12/31/69 (unix
> zero date).
>   Any configuration to bacula to recognize another formats of date?
>   I use on server Fedora 4 with the environment variable
> LANG=pt_BR.UTF-8. In my country, the format of date is DD/MM/YY, not
> MM/DD/YY.
>   I think this is the problem. I will try to unset the environment
> variable and test, then I will report to you.
> 
> Thanks,
> 
> 
> --
> Jeronimo Zucco
> LPIC-1 Linux Professional Institute Certified
> Núcleo de Processamento de Dados
> Universidade de Caxias do Sul
> 
> "May the Source be with you." - An unknown jedi programmer.
> 
> http://jczucco.blogspot.com
> 
> Phil Stracchino wrote:
> 
>>>Jeronimo Zucco wrote:
>>>
>>>
>>>>Hi Phil.
>>>>
>>>>Here is an e-mail for example. I not put the message on the list for
>>>>obvius reasons.
>>>
>>>
>>>
>>>Umm.
>>>
>>>I must be missing something.  I don't see any incorrect dates in this.
>>>They all look correct.
>>>
> 
> 
> 
> 
> 

- ---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFIsmTCq0VJ4DIPwRApZzAKCuP4XaF6tkROIUfJeoXlUcrXcEfwCfdnqi
mkuNK/Fz2gYau7dZZT97lVk=
=0XCF
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

When I save the e-mail, the date are correct, but the e-mail I receive,
become with date 10/28/47... Then the server translate to 12/31/69 (unix
zero date).
Any configuration to bacula to recognize another formats of date?
I use on server Fedora 4 with the environment variable
LANG=pt_BR.UTF-8. In my country, the format of date is DD/MM/YY, not
MM/DD/YY.
I think this is the problem. I will try to unset the environment
variable and test, then I will report to you.

Thanks,


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

Phil Stracchino wrote:
> Jeronimo Zucco wrote:
> 
>>Hi Phil.
>>
>>Here is an e-mail for example. I not put the message on the list for
>>obvius reasons.
> 
> 
> 
> Umm.
> 
> I must be missing something.  I don't see any incorrect dates in this.
> They all look correct.
> 




-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFIdyTCq0VJ4DIPwRAoP2AJwOYhYwJc1sf4QiUqwOWrJcuysWjgCg3PRs
3jhq8uGbQR/XdMafXEyiRGY=
=uFi2
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

No, this happens only for mails from bacula. I test on webmail imp and
thunderbird client.

Kern Sibbald wrote:
> On Tuesday 30 August 2005 16:05, Jeronimo Zucco wrote:
> 
>>Stranger that headers have the correct date, but the client (many,
>>include webmail) cannot interpret the date. Any caracter not recognized
>>on the field date ?
> 
> 
> I suspect that your clients (webmail) don't understand Portuguese. 
> 
> 
>>Follow an header for example:
>>Return-Path: <[EMAIL PROTECTED]>
>>Delivered-To: [EMAIL PROTECTED]
>>Received: from gaia.ucs.br (unknown [200.160.143.250])
>>by ops.ucs.br (Postfix) with ESMTP id 49AD1280079;
>>Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
>>Received: from gaia.ucs.br (localhost.localdomain [127.0.0.1])
>>by localhost.ucs.br (Postfix) with ESMTP id 167461902D9;
>>Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
>>Received: from bacula.ucs.br (unknown [200.160.143.251])by gaia.ucs.br
>>(Postfix) with ESMTP id E9A98190247;Tue, 30 Aug 2005 02:11:14
>>-0300 (BRT)
>>Received: from bacula.ucs.br (localhost.localdomain [127.0.0.1])by
>>bacula.ucs.br (8.13.4/8.13.4) with SMTP id j7U5BElS018112;Tue,
>>30 Aug 2005
>>02:11:14 -0300
>>Message-Id: <[EMAIL PROTECTED]>
>>From: [EMAIL PROTECTED] (Bacula)
>>Subject: Bacula: Backup OK of pavati-fd (PavatiJob) Full on QVD031L2
>>Sender: [EMAIL PROTECTED]
>>To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
>>Date: Ter, 30 Ago 2005 02:11:14 -0300
>>
>>Phil Stracchino wrote:
>>
>>>Jeronimo Zucco wrote:
>>>
>>>>Hi, Kern. (and list)
>>>>
>>>>I fix my config files for solve the problem, thank you for your help
>>>>(and for your great program).
>>>>
>>>>But I still receive messages from bacula whith date 12/31/1969. I use
>>>>the version 1.37.37 now. What could be ? The date of machine is ok.
>>>
>>>It's a pretty safe bet that the date on ONE of your machines has to be
>>>wrong.  Can you give us an example of one of the mis-dated messages?
> 
> 


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFIPnTCq0VJ4DIPwRAmcKAJ9555kYdD8VRGIwrKQBx60WiB7SgwCeKadV
nytc4UYlzEQOKy5cVsBTaEA=
=O427
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Phil, thank you for your help.

The problem ocours whith all machines backup (I do backup for 30 machines).

Phil Stracchino wrote:
> Jeronimo Zucco wrote:
> 
>>Stranger that headers have the correct date, but the client (many,
>>include webmail) cannot interpret the date. Any caracter not recognized
>>on the field date ?
>>
>>Follow an header for example:
>>Return-Path: <[EMAIL PROTECTED]>
>>Delivered-To: [EMAIL PROTECTED]
>>Received: from gaia.ucs.br (unknown [200.160.143.250])
>>by ops.ucs.br (Postfix) with ESMTP id 49AD1280079;
>>Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
>>Received: from gaia.ucs.br (localhost.localdomain [127.0.0.1])
>>by localhost.ucs.br (Postfix) with ESMTP id 167461902D9;
>>Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
>>Received: from bacula.ucs.br (unknown [200.160.143.251])by gaia.ucs.br
>>(Postfix) with ESMTP id E9A98190247;Tue, 30 Aug 2005 02:11:14
>>-0300 (BRT)
>>Received: from bacula.ucs.br (localhost.localdomain [127.0.0.1])by
>>bacula.ucs.br (8.13.4/8.13.4) with SMTP id j7U5BElS018112;Tue,
>>30 Aug 2005
>>02:11:14 -0300
>>Message-Id: <[EMAIL PROTECTED]>
>>From: [EMAIL PROTECTED] (Bacula)
>>Subject: Bacula: Backup OK of pavati-fd (PavatiJob) Full on QVD031L2
>>Sender: [EMAIL PROTECTED]
>>To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
>>Date: Ter, 30 Ago 2005 02:11:14 -0300
> 
> 
> 
> .Yeah, I don't see anything wrong with that.
> 
> Does the date-misreading problem occur on more than one machine?
> 
> 


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFGp3TCq0VJ4DIPwRAhT2AKC439QwWEEtCDheUlpgXlpgwaG16ACdEiNp
ob5V+vZiLhcvIm/KdwH1GGc=
=PIfW
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Looking other mails, I think then bacula not put the date field on
e-mail, then the mail server put the date 12/31/1969.

If anyone want I send a copy for e-mail, please ask me.


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com


Phil Stracchino wrote:
> Jeronimo Zucco wrote:
> 
>>Hi, Kern. (and list)
>>
>>I fix my config files for solve the problem, thank you for your help
>>(and for your great program).
>>
>>But I still receive messages from bacula whith date 12/31/1969. I use
>>the version 1.37.37 now. What could be ? The date of machine is ok.
> 
> 
> It's a pretty safe bet that the date on ONE of your machines has to be
> wrong.  Can you give us an example of one of the mis-dated messages?
> 
> 



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFGiXTCq0VJ4DIPwRAu35AKCbzUYaE2J51AAouJC8xyFF9sKYSwCcDN3y
1wrvULCm8n+ouxpY0nxo2MM=
=xOuF
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stranger that headers have the correct date, but the client (many,
include webmail) cannot interpret the date. Any caracter not recognized
on the field date ?

Follow an header for example:
Return-Path: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
Received: from gaia.ucs.br (unknown [200.160.143.250])
by ops.ucs.br (Postfix) with ESMTP id 49AD1280079;
Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
Received: from gaia.ucs.br (localhost.localdomain [127.0.0.1])
by localhost.ucs.br (Postfix) with ESMTP id 167461902D9;
Tue, 30 Aug 2005 02:11:15 -0300 (BRT)
Received: from bacula.ucs.br (unknown [200.160.143.251])by gaia.ucs.br
(Postfix) with ESMTP id E9A98190247;Tue, 30 Aug 2005 02:11:14
- -0300 (BRT)
Received: from bacula.ucs.br (localhost.localdomain [127.0.0.1])by
bacula.ucs.br (8.13.4/8.13.4) with SMTP id j7U5BElS018112;Tue,
30 Aug 2005
02:11:14 -0300
Message-Id: <[EMAIL PROTECTED]>
From: [EMAIL PROTECTED] (Bacula)
Subject: Bacula: Backup OK of pavati-fd (PavatiJob) Full on QVD031L2
Sender: [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
Date: Ter, 30 Ago 2005 02:11:14 -0300


Phil Stracchino wrote:
> Jeronimo Zucco wrote:
> 
>>Hi, Kern. (and list)
>>
>>I fix my config files for solve the problem, thank you for your help
>>(and for your great program).
>>
>>But I still receive messages from bacula whith date 12/31/1969. I use
>>the version 1.37.37 now. What could be ? The date of machine is ok.
> 
> 
> It's a pretty safe bet that the date on ONE of your machines has to be
> wrong.  Can you give us an example of one of the mis-dated messages?
> 
> 


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDFGe6TCq0VJ4DIPwRAvPVAKDQifG92TuFs+EXBTsdzYc4OEtTQgCeNMxC
sJgQwAqJaDzF0ACDNfJcdlA=
=Sf+C
-END PGP SIGNATURE-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-30 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi, Kern. (and list)

I fix my config files for solve the problem, thank you for your help
(and for your great program).

But I still receive messages from bacula whith date 12/31/1969. I use
the version 1.37.37 now. What could be ? The date of machine is ok.

My line to send mail is that:

  mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) %r\" -s
\"Bacula: %t %e of %c (%n) %l on %v\" %r [EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED]"
  operatorcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) %r\"
- -s \"Bacula: Intervention needed for %j\" %r" [EMAIL PROTECTED]
  mail = [EMAIL PROTECTED] = all, !skipped
  operator = [EMAIL PROTECTED] = mount
  console = all, !skipped, !saved

I have some users then receive this alerts.



Just for document, my storage's problem solve with this configuration:

bacula-sd.conf:
Autochanger {
  Name = autoloader1
  Device = Drive-1
  Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
  Changer Device = /dev/sg1
}
Autochanger {
  Name = autoloader2
  Device = Drive-2
  Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
  Changer Device = /dev/sg3
}
Device {
  Name = Drive-1
  Drive Index = 0
  Media Type = LTO
  Archive Device = /dev/nst0
  AutomaticMount = yes;   # when device opened, read it
  AlwaysOpen = yes;
  RemovableMedia = yes;
  RandomAccess = no;
  AutoChanger = yes
  Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
}
Device {
  Name = Drive-2
  Drive Index = 0
  Media Type = LTO
  Archive Device = /dev/nst1
  AutomaticMount = yes;   # when device opened, read it
  AlwaysOpen = yes;
  RemovableMedia = yes;
  RandomAccess = no;
  AutoChanger = yes
  Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
}


[ ]'s


- --
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul

"May the Source be with you." - An unknown jedi programmer.

http://jczucco.blogspot.com



Kern Sibbald wrote:
> Hello,
> 
> Well, the first thing that I see is that you are using an autochanger but 
> have 
> not defined an Autochanger resource in the SD.  Under 1.37.30, this might 
> have continued to work as it did in 1.36, because the new autochanger code 
> was only partially implemented.  In 1.37.36, you *must* use the new 
> Autochanger resource and make a number of other changes to your SD and 
> Director conf files, or it is not going to work.  This is all described 
> pretty well in the manual, and the ReleaseNotes say:
> 
> Items to note!!!
> ...
> - If you use an Autochanger, you *must* update your SD conf file
>   to use the new Autochanger resource.  Otherwise, certain commands
>   such as "update slots" may not work.
> 
> I guess I should have removed the second sentence.
> 
> I cannot say for sure your problems will go away with those changes, but 
> without them, you are sure to have problems.
> 
> 
> 
> On Tuesday 23 August 2005 21:32, Jeronimo Zucco wrote:
> 
>>Sorry, follow a description complete for my problems whith 1.37.36 version:
>>
>>We have 2 autoloaders (both have just one LTO2 drive) connected to one
>>Intel server. We have being running bacula 1.37.30 without problems so
>>far. Today we have upgraded to 1.37.36 and start to get this error:
>>
>> bacula-sd: 3302 Autochanger "loaded drive 0", result: nothing loaded.
>> 23-Ago 09:27 pan-fd: PanJob.2005-08-23_09.25.22 Fatal error: job.c:1588
>> Comm error with SD. bad response to Append Data. ERR=No data available
>>
>>
>>The e-mail reporting errors and warnings of bacula come with date
>>12/30/1969 too.
>>
>>We have several jobs running concurrently (maximum 3 jobs) and about 25
>>servers (most of them are Linux, but there are a few Microsoft servers
>>too). At least 3 servers run a script before backup (it does an export
>>of an Oracle database) and it takes from 1 to 3 hours to accomplish this
>>export and another hour to make the backup itself.
>>
>>
>>
>>Our bacula configuration files follow:
>>
>>bacula-fd.conf:
>>
>>Director {
>>  Name = bacula-dir
>>  Password = ""
>>}
>>
>>Director {
>>  Name = bacula-mon
>>  Password = "X"
>>  Monitor = yes
>>}
>>
>>FileDaemon {  # this is me
>>  Name = bacula-fd
>>  FDport = 9102  # where we listen for the director
>>  WorkingDirectory = /var/bacula
>>  Pid Directory = /var/run
&

Re: [Bacula-users] errors with 1.37.36 version

2005-08-23 Thread Jeronimo Zucco
Sorry, follow a description complete for my problems whith 1.37.36 version:

We have 2 autoloaders (both have just one LTO2 drive) connected to one
Intel server. We have being running bacula 1.37.30 without problems so
far. Today we have upgraded to 1.37.36 and start to get this error:

 bacula-sd: 3302 Autochanger "loaded drive 0", result: nothing loaded.
 23-Ago 09:27 pan-fd: PanJob.2005-08-23_09.25.22 Fatal error: job.c:1588
 Comm error with SD. bad response to Append Data. ERR=No data available


The e-mail reporting errors and warnings of bacula come with date 12/30/1969
too.

We have several jobs running concurrently (maximum 3 jobs) and about 25
servers (most of them are Linux, but there are a few Microsoft servers
too). At least 3 servers run a script before backup (it does an export
of an Oracle database) and it takes from 1 to 3 hours to accomplish this
export and another hour to make the backup itself.



Our bacula configuration files follow:

bacula-fd.conf:

Director {
  Name = bacula-dir
  Password = ""
}

Director {
  Name = bacula-mon
  Password = "X"
  Monitor = yes
}

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

Messages {
  Name = Standard
  director = bacula-dir = all, !skipped
}



bacula-sd.conf:

Storage { # definition of myself
  Name = bacula-sd
  SDPort = 9103  # Director's port
  WorkingDirectory = "/var/bacula"
  Pid Directory = "/var/run"
  Maximum Concurrent Jobs = 10
}

Director {
  Name = bacula-dir
  Password = "XX"
}

Director {
  Name = bacula-mon
  Password = "Xx"
  Monitor = yes
}

Device {
  Name = autoloader1#
  Media Type = LTO
  Archive Device = /dev/nst0
  AutomaticMount = yes;   # when device opened, read it
  AlwaysOpen = yes;
  RemovableMedia = yes;
  RandomAccess = no;
  Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
  Changer Device = /dev/sg1
  AutoChanger = yes
  Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
}

Device {
  Name = autoloader2#
  Media Type = LTO
  Archive Device = /dev/nst1
  AutomaticMount = yes;   # when device opened, read it
  AlwaysOpen = yes;
  RemovableMedia = yes;
  RandomAccess = no;
  Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
  Changer Device = /dev/sg3
  AutoChanger = yes
  Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
}


bacula-dir.conf:

Director {# define myself
  Name = bacula-dir
  DIRport = 9101# where we listen for UA connections
  QueryFile = "/etc/bacula/query.sql"
  WorkingDirectory = "/var/bacula"
  PidDirectory = "/var/run"
  Maximum Concurrent Jobs = 3
  Password = "XX" # Console password
  Messages = Standard
  FD Connect Timeout = 15
}

Job {
  Name = "HermesJob"
  Type = Backup
  Client = hermes-fd
  FileSet = "Set Hermes"
  Schedule = "Ciclo"
  Storage = Autoloader-1
  Messages = Standard
  Pool = Default
  Priority = 10
  Write Bootstrap = "/var/bacula/Hermes.bsr"
  SpoolData = yes
  Spool Attributes = yes
  Maximum Concurrent Jobs = 1
}

Job {
  Name = "ShivaJob"
  Type = Backup
  Level = Full
  Client = shiva-fd
  FileSet = "Set Shiva"
  Schedule = "CicloShiva"
  Storage = Autoloader-2
  Messages = Standard
  Pool = ShivaDiarioImpar
  Priority = 8
  Write Bootstrap = "/var/bacula/Shiva.bsr"
  SpoolData = yes
  ClientRunBeforeJob = "/home/oracle/bkp_disparado_pelo_bacula"
}

Job {
  Name = "AtenaJob"
  Type = Backup
  Level = Full
  Client = atena-fd
  FileSet = "Set Atena"
  Schedule = "CicloAtena"
  Storage = Autoloader-2
  Messages = Standard
  Pool = ShivaDiarioImpar
  Priority = 8
  Write Bootstrap = "/var/bacula/Atena.bsr"
  SpoolData = yes
  ClientRunBeforeJob = "/home/oracle/bkp_disparado_pelo_bacula"
}

FileSet {
  Name = "Set Hermes"
  Include {
Options {
  signature = MD5
}
File = "http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] errors with 1.37.36 version

2005-08-23 Thread Jeronimo Zucco
Another problem: the warnings e erros sending by e-mail having the date 30 of
december of 1969, with version 1.37.36. :-)


--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul


Citando Jeronimo Zucco <[EMAIL PROTECTED]>:

> I have bacula running today with version 1.37.30, 2 HP autoloaders, whithout
> problems.
>
> I upgrade to version 1.37.36 (for tests), and the following error occurs:
>
> bacula-sd: 3302 Autochanger "loaded drive 0", result: nothing loaded.
> 23-Ago 09:27 pan-fd: PanJob.2005-08-23_09.25.22 Fatal error: job.c:1588 Comm
> error with SD. bad response to Append Data. ERR=No data available
>
> My autochanger stop to load the drive. I return then to version 1.37.30, and
> the
> problem desapear.
>
> Anyone have ideia why this problem occurs ?
>
> thank you
>
> --
> Jeronimo Zucco
> LPIC-1 Linux Professional Institute Certified
> Núcleo de Processamento de Dados
> Universidade de Caxias do Sul
>
>
>
>
>
> 
> This message was sent using IMP, the Internet Messaging Program.
>
>
>
> ---
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>



This message was sent using IMP, the Internet Messaging Program.



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] errors with 1.37.36 version

2005-08-23 Thread Jeronimo Zucco
I have bacula running today with version 1.37.30, 2 HP autoloaders, whithout
problems.

I upgrade to version 1.37.36 (for tests), and the following error occurs:

bacula-sd: 3302 Autochanger "loaded drive 0", result: nothing loaded.
23-Ago 09:27 pan-fd: PanJob.2005-08-23_09.25.22 Fatal error: job.c:1588 Comm
error with SD. bad response to Append Data. ERR=No data available

My autochanger stop to load the drive. I return then to version 1.37.30, and the
problem desapear.

Anyone have ideia why this problem occurs ?

thank you

--
Jeronimo Zucco
LPIC-1 Linux Professional Institute Certified
Núcleo de Processamento de Dados
Universidade de Caxias do Sul






This message was sent using IMP, the Internet Messaging Program.



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users