[Bacula-users] Problems with Tape.

2015-01-05 Thread Danixu86
Thanks to both... I'm planning to replace the drive, because now even the old 
tapes fail often...

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] general question to robocopy and bacula

2014-12-17 Thread Danixu86
I really don't know if fails, but anyway, is a bad idea read a file while 
another program is writing in same file. Probably you will get corrupted files 
on your backup.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Unexpected error

2014-12-12 Thread Danixu86
That is a Windows VSS error.

The best you can do is try to fix the problem in Windows machine, maybe 
reinstalling bacula works.
The other option is add this line in fileset:
Enable VSS = No

With this you avoid the use of VSS on Windows machines, but the PC should be 
completly clean of running program to avoid problems with files in use.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Multiple FileSet

2014-12-11 Thread Danixu86
Maybe is name problem (spaces and maybe others) I really don't know, but seems 
to be the problem.

I always use names without spaces or similar and is working fine, for example: 
FullSet and FullSet1. Try using names without spaces.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] concurrent backup

2014-12-10 Thread Danixu86
For a Tape the recomended Job number is only one, because if you run more than 
one you're interleaving data between jobs and restore takes longer (and i think 
that database size is bigger too). You can try to use Spooling, but i can't 
help you with that because i'm starting to configure spooling in my new backup 
server and i'm not sure how it works.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Destination restore

2014-12-10 Thread Danixu86
Yes.

Once you've done the file selection to restore, you will see three options: 
yes/mod/no. If you select mod you can use the 9th option to change restore 
path.

Greetings!!.

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Multiple FileSet

2014-12-09 Thread Danixu86
|| - Can i set different fileset for different servers?

Of course, even more than one fileset in same server if you want. You only have 
to create two jobs with different filesets and it's done. For example:

Client {
Name = server1
Address = 192.0.0.1
FDPort = 9102
Catalog = catalog.ca
Password = Password
}

Client {
Name = server2
Address = 192.0.0.2
FDPort = 9102
Catalog = catalog.ca
Password = Password
}

FileSet {
Name = server1.fs

Include {
File = /
}
}

FileSet {
Name = server2.fs

Include {
File = /var
}
}

JobDefs {
Name = server1.job
Type = Backup
Fileset = server1.fs
Schedule = Schedule
Client = server1
Pool
}

JobDefs {
Name = server2.job
Type = Backup
Fileset = server2.fs
Schedule = Schedule
Client = server2
Pool = Pool
}

Of course is only an example, and you've to add and set some options like 
schedule, compression, pools... 

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Multiple FileSet

2014-12-09 Thread Danixu86
||JobDefs {
||Name = server1.job
||Type = Backup
||Fileset = server1.fs
||Schedule = Schedule
||Client = server1
||Pool
||}

Sorry for this error, is only Job instead JobDefs. I've copied a JobDef of 
my config file and i forgot to change.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Prevent jobs to run or limit bandwidth in certain hours/days

2014-12-04 Thread Danixu86
A good idea is to have a dedicated network only for servers. For example, i've 
two networks in my work: one for users and other only for servers, then i can 
run a full backup between servers using about 500Mbits of bandwidth, and users 
don't notice anything.

All full backups are in the same day?, because another option is distribute 
full backups along week days (or month days), and the rest of backups 
Differentials and Incrementals.

(sorry for my english)

Greetings!!

---
---

John, yes, most of the jobs start at the same time. But they join the queue 
because of max concurrent jobs setting. So they are not running at the same 
time. My bandwidth issue is not related to this, i think i explained it wrong. 
My bacula storage is in my office so in workhours it shouldn't consume my 
bandwidth.

On Thu, Dec 4, 2014 at 6:07 PM, John Lockard jlockard  at  umich.edu 
(jlockard  at  umich.edu) wrote:
Are you starting all your jobs at the same time?  Wondering if your having 
issues with all of your jobs competing for bandwidth and slowing down.  
Thinking a staggered start might help you.


On Thu, Dec 4, 2014 at 9:27 AM, Rai Blue raiblue  at  gmail.com (raiblue  
at  gmail.com) wrote:


Hi everyone,

I'm using Bacula 7.0 to backup a pack of servers. My schedules are all starts 
in evening time. My problem is: some days jobs take longer so some of them 
arent finished by morning and workhours bandwidth is a problem for me.

I searched max bandwidth but it doesnt fit because i don't want to limit 
bandwidth in evenings, just in workhours, but i cant seperate it in job 
definition.

Then I came across Max Start Delay and Max Run Sched Time and they don't 
fit either because i want to let the jobs run for example in weekends.

Is there a way to define a jobs behaviour according to its time? Or what would 
you suggest doing in such situation?


Thanks,

Begum Tuncer

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Disabling compression on a path / file extension basis?

2014-11-28 Thread Danixu86
|| Hello,
|| 
|| 
|| And I was wondering why it could be necessary to exclude files from gzip 
compression. Since the most that can happen is that these files will suffer no 
compression.
|| 
|| 
|| Best regards,
|| Ana

I supose for performance, why compress files that are compressed if you can 
speed up the backup by ony copying that files. ;)

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Enable LTO-4 Hardware compression on bacula.

2014-11-26 Thread Danixu86
Hi, first of all i'm sorry for my english.

I post here because i'm not able to enable Hardware compression on my LTO-4 
tape.

I was reading a lot of forums with info about how to enable, but tape still 
without compression.
My tape drive is a 
[url=http://www.quantum.com/serviceandsupport/softwareanddocumentationdownloads/lto-4hh/index.aspx]Quantum
 Ultrium LTO-4 HH Original[/ur] and is able to HW compress data.

Here's the report of some utilities:

tapeinfo -f /dev/st0
Product Type: Tape Drive
Vendor ID: 'QUANTUM '
Product ID: 'ULTRIUM 4   '
Revision: '2170'
Attached Changer API: No
SerialNumber: 'PW0752AMJ50072'
MinBlock: 1
MaxBlock: 16777215
SCSI ID: 4
SCSI LUN: 0
Ready: yes
BufferedMode: yes
Medium Type: Not Loaded
Density Code: 0x46
BlockSize: 0
DataCompEnabled: yes
DataCompCapable: yes
DataDeCompEnabled: yes
CompType: 0x1
DeCompType: 0x1
Block Position: 0
Partition 0 Remaining Kbytes: 0
Partition 0 Size in Kbytes: 852950
ActivePartition: 0
EarlyWarningSize: 0

-
-

tapeinfo -f /dev/nst0
Product Type: Tape Drive
Vendor ID: 'QUANTUM '
Product ID: 'ULTRIUM 4   '
Revision: '2170'
Attached Changer API: No
SerialNumber: 'PW0752AMJ50072'
MinBlock: 1
MaxBlock: 16777215
SCSI ID: 4
SCSI LUN: 0
Ready: yes
BufferedMode: yes
Medium Type: Not Loaded
Density Code: 0x46
BlockSize: 0
DataCompEnabled: yes
DataCompCapable: yes
DataDeCompEnabled: yes
CompType: 0x1
DeCompType: 0x1
BOP: yes
Block Position: 0
Partition 0 Remaining Kbytes: 0
Partition 0 Size in Kbytes: 852950
ActivePartition: 0
EarlyWarningSize: 0

-
-

cat /sys/class/scsi_tape/st0/default_compression 
1

-
-

cat /sys/class/scsi_tape/nst0/default_compression 
1

-
-

It looks activated but i'm not able to use it... bacula still using only 800GB 
of tape. I know that it depends of compression ratio of stored files, but if 
gzip gets about 26% of CR, HW must get at least 10% of CR...

PDTA: All compressions in bacula are disabled

Thanks!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Enable LTO-4 Hardware compression on bacula.

2014-11-26 Thread Danixu86
Remember that
you will get very little compression a second time. Have you tried
more than 1 tape? I assume you do not have any fixed volume size limit
set on the pool.

Thanks John for reply.

|| Is your data already compressed?

No, i've disabled gzip compression on bacula to speed up backups (from 10MB/s 
to 50MB/s), and the most of files are uncompressed (pdf, doc, dwg...).

|| Have you tried more than 1 tape?

Yes, i've tried three. All formatted (one with mt command, and two with btape).

|| I assume you do not have any fixed volume size limit set on the pool.

I don't have any entry in pool about size limit or similar:

Pool {
Name = zurbano_servers_cinta_sys.po
Pool Type = Backup
Storage = triky_cinta_sys.st
LabelFormat = zurbano_servers-
Recycle = yes
AutoPrune = yes
Volume Retention = 2 months
Volume Use Duration = 1 months
Recycle Oldest Volume = yes
File Retention = 2 months
}

-
-

Storage {
Name = triky_cinta_sys.st
Address = 1xx.xx.xx.xx
SDPort = 9103
Password = passwd
Device = triky_cinta.de
Media Type = LTO-4
}

Device {
  Name = triky_cinta.de
  Media Type = LTO-4
  Archive Device = /dev/st0
  AutomaticMount = yes;
  LabelMedia = yes
  AlwaysOpen = yes;
  RemovableMedia = yes;
  RandomAccess = no;
  Spool Directory = /server/bacula/spool
  Maximum Spool Size = 1500g
  Maximum Job Spool Size = 500g
  Maximum File Size = 5g
}

-
-

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] How to do Cross Replication Site1=Site2 (DR)

2014-11-26 Thread Danixu86
What about mysql cluster?

http://dev.mysql.com/doc/refman/5.0/en/mysql-cluster-nodes-groups.html
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-online-add-node.html

I've never tried this before, but maybe is a good solution ;)

greetings!!



Interesting problem.
If we were just talking MySQL replication, there is a setting increment where 
you would set it to 2 in this case and no duplicate record numbers would be 
generated.
In this case we need an increment setting for bacula jobids, or perhaps a 
number of sites or sites setting, which would accomplish the same thing so 
non-duplicating jobids would be generated within bacula.


-Original Message-
From: Heitor Faria [mailto:heitor  at  bacula.com.br]
Sent: Wednesday, November 26, 2014 7:00 AM
To: bacula-users  at  lists.sourceforge.net
Subject: Re: [Bacula-users] How to do Cross Replication Site1=Site2 (DR)

SITE 1 -- INTERNET - SITE2
Dir1.Dir2
(Catalog)(REPLICATED)(Catalog)
SD1...(REPLICATED)..SD2
FD...FD
FD...FD
FD...FD

The volumes can be easily replicated using any OS tool, that's OK. The problem 
is the DB (Catalog) since i understand that job ids may be duplicated in case i 
sync both sites databases.

Bacula Copy Job with SelectionType=PoolUncopiedJobs would produce similar 
redundancy results (mirroring) with the proper database index you need in 
Bacula database.

Regards,
==
Heitor Medrado de Faria - LPIC-III | ITIL-F
12 a 23 de janeiro de 2015 - Treinamento Telepresencial Bacula: 
http://www.bacula.com.br/?p=2174
61 2021-8260 | 8268-4220
Site: www.bacula.com.br | Facebook: heitor.faria | Gtalk: heitorfaria  at  
gmail.com 
===

- Mensagem original -
De: Pr0sper0 bacula-forum  at  backupcentral.com
Para: bacula-users  at  lists.sourceforge.net
Enviadas: Terça-feira, 25 de novembro de 2014 22:21:06
Assunto: [Bacula-users] How to do Cross Replication Site1=Site2 (DR)

Hello All,

After reading the official Bacula documentation i couldn't found a solution for 
my situation. I wonder if someone had the same issue.

This is what i need to do in order to address Disaster Recovery:

SITE 1 -- INTERNET - SITE2
Dir1.Dir2
(Catalog)(REPLICATED)(Catalog)
SD1...(REPLICATED)..SD2
FD...FD
FD...FD
FD...FD

The volumes can be easily replicated using any OS tool, that's OK. The problem 
is the DB (Catalog) since i understand that job ids may be duplicated in case i 
sync both sites databases.

Is there any way to address this safely ?

Thanks a lot for your response.
Have an excelente day! Smile

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] How to do Cross Replication Site1=Site2 (DR)

2014-11-26 Thread Danixu86
But you're using both directors to make backups, or the second is only a mirror 
waiting for dissaster?, because for example, i've an script running every day 
to dump the entire database to another server, then if there are any 
dissasters, i only have to import the last backup to a new director. Maybe is 
different, because my director is in a Virtual Machine, and i've a backup of 
that machine in another server, then if something fails, i only have to power 
on that backup of director and import the last database.

Greetings!!


-Original Message- 
Mysql replication may in fact guard against duplicate jobids, since the same 
jobids will be in both databases, in theory.
It's the replication lag that will be the problem. During the lag it will still 
be possible to create duplicate bacula jobids.

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] How to do Cross Replication Site1=Site2 (DR)

2014-11-26 Thread Danixu86
|| Answering Danixu86's question, Yes , both directors will do their respective 
backups on their respective storages in order to let all the FDs in SITE2 to 
backup through the LAN to SD2 and same situation in SITE1 (to not pass anything 
through internet)... I may be commiting a mistake here, probably a 
missunderstanding, please let me know if i'm saying something stupid on this 
last one .

I forgot one thing that maybe is the best solution: Why don't use different 
catalogs?, you can have two catalogs in same mysql database, then don't cares 
what job number and you can syncro both databases without any duplicated job.

For example:

MySql1 Internet---MySql2
Cat1 (U) --- Cat1 (B)
Cat2 (B) --- Cat2 (U)
Dir1 --- Dir2
Sd1 - Sd2

Dir1 - Cat1
Dir2 - Cat2

(U) = Using
(B) = Backup

Then, in first director, you can use the Cat1 as catalog with it's own job 
number, and in second director, you can use the Cat2 as catalog with it's own 
job number. Then you can syncro both MySql every day or whatever you want, and 
don't cares if other catalog has a Job with same ID.

Greetings!!

+--
|This was sent by danielmadri...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users