Re: [Bacula-users] Changing Directors.

2007-05-15 Thread Miki Lewinger
Flak Magnet wrote:
 I've been running bacula on solaris since December of '06.  It started out as 
 a single-box backup solution, with the dir, sd and fd running on a single 
 box.  Since then we've scaled it up to include a second sd and fd on another 
 Sun box, the an fd-only on a ubuntu machine, and the fd on a WinXP machine.
 
 I've been using mySQL.  I know how to get a dump of the database out, and how 
 to read that database back in.  I intend to use that to migrate the 
 database to the mySQL server on the new director.  I don't think that will 
 cause any problems.  I'm open to being corrected.

MYSQL transfer will probably be fine with mysqldump and mysql import. 
However, you should keep volumes (filenames in the case of FILE backup, 
  or the tapes themselves) bound to their ORIGINAL SD definitions as 
migration among SDs is not supported yet (not a feature), and volumes 
are internally connected to pools, which MAY or MAY NOT be connected to 
particular storage devices.

 With the director moving off of the original sun machine, I'm going to rename 
 the sd and fd on that machine.  If I have to do restores, I know that I'll 
 have to change the restore-from devices and such.  Currently their named 
 bacula-sd and bacula-fd.  I intend to change them to [hostname]-fd/sd.  Are 
 there any snafus I might encounter there?

I'd recommend NOT changing daemons names (see above), as they are part 
of the bacula database. The names bacula-sd and bacula-fd are internal 
to bacula and not connected to the server IP, thus do not NEED to be 
changed. Past backups may get confused regarding storage and pools 
associations. Or maybe I'm confused about the implication, but in any 
case it doesn't sound good.

 
 Anything else?
 

Have a nice day !

Michael Lewinger


-
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] mail job report to user - variables and python

2007-05-14 Thread Miki Lewinger
Hi there,

I'm looking for a convenient way to send individual mail reports to
users as soon as his/her particular job(s) have finished. Ideally (for a
non-programmer like me...) this could/should be done by substituting the
recipient's email address variable (%r) defined within a MESSAGE
resource, with a job-defined variable (let's call it job_mail).

Job {
name=john_locke
fileset=xxx
pool=mmm
***job_mail=[EMAIL PROTECTED]***
messages=job_complete
etc
}

and on the messages resource:

messages {
name=job_complete
***%%r=job_mail***
mailcommand = bacula/bin/bsmtp -h mail.example.com \
-f \\(Bacula\) %r\ -s \Bacula: %t %e of %c %l\ %r
}

I have read Chapter 55 - Variables Expansion - but the part regarding
substitution is quite short and lacking examples... and the support
status on variable substitution is not clear (dropped ? removed ?).

Can this seemingly mundane task be performed without using python ?

Thanks in advance,

Michael Lewinger


-
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] Storage on a different machine

2007-05-13 Thread Miki Lewinger
Hello Jean,

You need to define a new storage device in the bacula-dir.conf file as
follows, in the DIRECTOR machine:


Director {
Name = first_machine
...
}

Storage {
Name = second_machine
Address = second_machine.com.org
SDPort = 9103
Maximum Concurrent Jobs = 3
Password = passwd_1234
Device = my_device
Media Type = File
}

Pool {
Name = second_machine_pool
Pool Type = Backup
Volume Retention = 30 days
...
whatever pool options you like
...
Storage = second_machine
label format = second_machine_data
}
...
etc
--

AND THEN on the SECOND machine:

Director {
   Name = first_machine
   Password = passwd_1234
}


Device {
   Name = my_device
   Media Type = File
   Archive Device = (etc)
...
}

Be certain you understand the Name directive in the Device, Storage
and Pool Resources in my example. Get more help with the relevant parts
in bacula's updated manual pp 103 or at http://murl.se/24783.

Cheers,

Miki Lewinger

Jean-François Leroux wrote:
 Hi, I'm a bit confused by this. I'd like to  have bacula backups on 
 another machine than the one with bacula-director runnig.
 Should I install bacula on the other machine as well and just let 
 bacula-sd run  or should I use the bacula-sd on machine  and give 
 machine 2 as a destination ?
 In both cases, where do you set that ? I can only see a 'Where' 
 directive in bacula-dir.conf...
 
 Thanks :)
 
 
 
 
 -
 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



-
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] rpm for fc6 in a production environment

2007-05-13 Thread Miki Lewinger
Hi Vittorio,

RPMS would be installed on typical system locations such as /usr/bin,
/sbin, /etc, etc... so don't try it. If you write me directly at
[EMAIL PROTECTED] I can send you a TAR file with all the binaries,
compiled for fedora6 on which I'm currently running bacula 2.0.3.

Cheers,

Miki Lewinger

[EMAIL PROTECTED] wrote:
 hi guys...
 
 i have to compile the last bacula release on a server with a
 strict security policy (production environment) so on the
 server there isn't gcc.
 
 is there an rpm for fedora core 6 pre build and ready to
 install?
 
 how can i compile the package by myself on another machine?
 
 thank you in advance.
 
 vittorio
 
 -
 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/



-
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] High database load when migrating many smallfiles

2007-04-25 Thread Miki Lewinger
Hello,

Mysql has hung (hanged ?) on me when query data (INSERT) was too big to 
fit in a field. I had this happening when someone was backing up 
something that went recursively for about 20 dirs downwards 
(dir1/dir2/dir3/dir1/dir2dir3/dir1 etc). I never discovered what caused 
this recursion but after I removed this particular path from the backups 
mysql stopped hanging.

try mysqladmin processlist and mysqladmin version to see what is 
going on realtime and release a mysql query (mysqladmin kill).

Cheers,

Michael

Bill Moran wrote:
  In response to Damian Lubosch [EMAIL PROTECTED]:
 
  Hello!
 
  I am using Bacula 2.0.3 with Mysql5 on Debian  Etch with a 2.8GHz
  Celeron, 1.5GB RAM, LTO2 drive, 2x 500G (Backup) + 1x80 Disks 
(System/DB).
 
  I have a machine to backup with about 1-2 million small files (~1kb).
  When I run a migration job for about 4 GB of such data the performance
  is going down. The tape rewinds very often and the overall performance
  is about 3MB/sec. I found out (with top) that the mysql is taking all
  the processing power (together with bacula-sd) when migrating many 
files.
  On the other hand, when migrating only few large files -backups is
  running fine with 20-30MB/sec.
 
  How can I improve the performance? Are there any tricks I oversaw?
 
  This sounds like a database optimization problem to me.
 
  When Bacula is dealing with a lot of small files, performance generally
  bottlenecks at the datbase's ability to write new records, and everything
  else is held up waiting for the database (thus your tape drive runs out
  of data to write and has to shoe-shine).
 
  I'm not a MySQL expert, so I can't give any DB-specific advice, but you
  should look at what can be done to improve MySQL's performance.  Is
  MySQL actually blocking waiting for free CPU, or is it waiting on disk
  IO, for example.
 
  I'm making a lot of guesses here, but what kind of HDD subsystem do 
you have?
  You may have to invest in faster (i.e. SCSI or SAS) drives to get enough
  IO throughput.
 
  But isolate the problem first.  If MySQL is slow, it's slow doing 
_something_.
  Find out what that something is and you'll have a good hint as to 
what you
  need to do.
 


-
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] Migrating jobs between different SDs (servers)

2007-04-25 Thread Miki
Hi Mariusz !

Welcome to the underrated migrating club ! :) I also tried to migrate 
between SDs to no avail. I supposed that migration for us bacula users 
using FILE storage systems would be implemented as well, but alas, it is 
not.

Why did you want to migrate the files ? Something connected to expanding 
a filesystem ? Because this is a feature of FILE based volumes, that 
they are not easily extendable (as opposed to tapes) and migration could 
be a good way to transfer data between old (let's say a 1TB LVM system) 
and new (4TB netapp) storage systems.

Finally, I moved the volumes themselves to the new storage server (10X 
400GB SATA disks), and migrated the old server's TCP/IP address to the 
new server. bacula picked up from there and it eventually worked quite 
well, except for the Intel 965 motherboard that is not well supported by 
linux.

Cheers,

Michael

Mariusz Czulada wrote:
 Hi,
 
 Dnia 19-04-2007 o godz. 22:42 Arno Lehmann napisał(a):
 Hi,

 On 4/19/2007 4:48 PM, Mariusz Czulada wrote:
 Hello,

 I have yet another problem to solve. I didn't find similar case in
 documentation.

 I have two separate systems in two locations (let's say site1 and
 site2). In site1 I have local DDS5 drive and TS3310 library. In
 site2 server is only equiped with DDS5. Also, Site1 is accesible
 from Site2 via WAN. So, Site1 configuration looks like this:

 [...]

 We could not buy a dedicated library for Site2, OTOH TS3310 in site1
 is big enough to hold backups from both sites. So, I thought about
 migrating jobs stored in localfiles-2 to a library via WAN connection.
 IHMO I should add such items:

 Site2:
 - Director2:
   * storage: ts3310-1 (@StorageDaemon1)
   * pool: tapelibrary-2
 +storage: ts3310-1

 So I could migrate locally stored jobs from fileststem-2 to
 tapelibrary-2 which resides on remote (Site1) library.

 !!

 My question is: are there any weak points in this idea?
 Yes...

 I.e. is it
 possible to migrate between different storage daemons?
 No, that's not possible. Perhaps it will be implemented some day - I
 talked with Kern about this - but I'm quite sure nobody started
 implementing this.

 
 Hmm... This highly complicates my idea :/ Have to 'redesign' the whole 
 concepts...
 
 BTW. If it was mentioned previously - is it possible to add multi SD 
 migration to the TODO list (question to developers, I think)? I hope 
 I'm not the only one to use this feature. IMHO it could be very 
 important in backing up multiple/distributed systems, where it is much 
 easier and cheaper to have one big library for long term storage then 
 equip every system/site with dedicated, smaller libs.
 
 Can [slow] WAN
 connection (some 2 Mb/s I think) affect backup reliability?
 Not reliablility itself, but the duration of the jobs alone makes them
 more easily affected by network problems.

 
 I keep it in mind, but was thinking rather about possibiliy of problems, 
 when feeding SD with data is [probably] slower then a library/drive 
 speed.
 
 !!

 Any comments and suggestions are gratly appreciated.

 Regards,

 Mariusz Czulada
 Arno

 
 Mariusz
 
 
 Książka Benedykta XVI Jezus z Nazaretu 
 napisana w I rocznicę śmierci Jana Pawła II
 już w księgarniach! Zobacz więcej!
 http://klik.wp.pl/?adr=http%3A%2F%2Fksiazki.wp.pl%2Fkatalog%2Fksiazki%2Fksiazka.html%3Fkw%3D35343sid=1109
 
 
 
 -
 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/


-
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] Job history after db refresh

2007-04-23 Thread Miki Lewinger
Hello Kyle.

You may have figured it out already :) It is from the client.

Michael

Kyle Tucker wrote:
 Today I implemented an all-new backup scheme on my
 2.0.2 Bacula installation. I ran drop_mysql_tables
 and then make_mysql_tables successfully and my first
 job started at job number 1. But if I run the command
 'status client=' from bconsole, it has all the old
 jobs I ran from the previous db installation. Where
 is this old data coming from? 
 

-
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] consolidating volumes

2007-02-15 Thread Miki Lewinger
Hello,

If I purge (sometimes I need to) jobs, there are volumes that remain 
with very little used space in them, and until job/volume retention 
periods are reached, they just remain there, taking space... As far as I 
understand migrating jobs would reorganize them on arrival and fill new 
volumes, but I have tried and not yet succeeded using migration.

Is there any new version for the doc on migration ?

Thanks,

Miki
BGU


-
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.phpp=sourceforgeCID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula 2.0.1 Startup script not working, manual start works fine.

2007-02-13 Thread Miki Lewinger




Howdy,


Please check the
permissions of the directories involved are set to user and group
bacula (check the compilation config file for the /working, /bin, etc,
paths). If they are not and you try chown it into bacula, and it fails,
it means your passwd file (or whatever authentication scheme you use)
does not have the user bacula. Throw into it as well group bacula.


Miki
BGU

 



-
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=lnkkid=120709bid=263057dat=121642___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] restarting bacula

2007-02-03 Thread Miki Lewinger
Hi there,

- Is there any way to restart bacula (/etc/bacula/bacula restart or 
/etc/init.d/bacula-ctl-dir restart) without losing the currently running 
jobs ?
- I have a job that is stuck in the running jobs for a long time, and 
has already been canceled in the console. However, it still shows up in 
the running jobs list.
Choose Job to cancel (1-19): 1
2901 Job life1.2007-02-02_16.07.47 not found.
3904 Job life1.2007-02-02_16.07.47 not found.

Is this a kind of delayed situation where the job will disappear only 
after all the other running jobs (running, waiting, start time, etc) 
finish first ?

Thanks,

Miki Lewinger
BGU


-
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=lnkkid=120709bid=263057dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] segmentation fault

2007-02-01 Thread Miki Lewinger
Hello,

I have been using bacula to backup, and while writing a user-level
documentation about how to use the system, I discovered that file
restore crashes the director !

I currently have 3 storage servers including the one where bacula-dir is
running, and two additional storage servers. I compiled bacula from
source (ver 2.0.1) on fedora 5 and I'm using mysql 5.

I followed the documentation, and got the btraceback output below. Can
someone help me diagnose this problem ?

Thanks,

Miki Lewinger
BGU

Using host libthread_db library /lib/libthread_db.so.1.
`shared object read from target memory' has disappeared; keeping its
symbols.
[Thread debugging using libthread_db enabled]
[New Thread -1208183088 (LWP 2529)]
[New Thread -1231262816 (LWP 2533)]
[New Thread -1220772960 (LWP 2531)]
[New Thread -1210283104 (LWP 2530)]
0x00a74402 in __kernel_vsyscall ()
$1 = biobackup-dir, '\0' repeats 16 times
$2 = 0x8610880 bacula-dir
$3 = 0x86108a8 /sbin/
$4 = 0x0
$5 = 0x80e29d7 2.0.1 (12 January 2007)
$6 = 0x80e29ef i686-pc-linux-gnu
$7 = 0x80e2a01 redhat
$8 = 0x80e2a08 (Bordeaux)
#0  0x00a74402 in __kernel_vsyscall ()
#1  0x00725606 in __nanosleep_nocancel () from /lib/libpthread.so.0
#2  0x080a2e05 in bmicrosleep (sec=60, usec=0) at bsys.c:67
#3  0x0807022e in wait_for_next_job (one_shot_job_to_run=0x0) at
scheduler.c:130
#4  0x0804dbad in main (argc=0, argv=0xbf9fecc4) at dird.c:274

Thread 4 (Thread -1210283104 (LWP 2530)):
#0  0x00a74402 in __kernel_vsyscall ()
#1  0x00664d11 in ___newselect_nocancel () from /lib/libc.so.6
#2  0x080a6311 in bnet_thread_server (addrs=0x8611830, max_clients=10,
client_wq=0x80ea3a0,
 handle_client_request=0x8089912 handle_UA_client_request) at
bnet_server.c:163
#3  0x0808990a in connect_thread (arg=0x8611830) at ua_server.c:84
#4  0x0071f433 in start_thread () from /lib/libpthread.so.0
#5  0x0066ba1e in clone () from /lib/libc.so.6

Thread 3 (Thread -1220772960 (LWP 2531)):
#0  0x00a74402 in __kernel_vsyscall ()
#1  0x0072275c in pthread_cond_timedwait@@GLIBC_2.3.2 () from
/lib/libpthread.so.0
#2  0x080c53cb in watchdog_thread (arg=0x0) at watchdog.c:305
#3  0x0071f433 in start_thread () from /lib/libpthread.so.0
#4  0x0066ba1e in clone () from /lib/libc.so.6

Thread 2 (Thread -1231262816 (LWP 2533)):
#0  0x00a74402 in __kernel_vsyscall ()
#1  0x00724e3b in __read_nocancel () from /lib/libpthread.so.0
#2  0x080a57c9 in read_nbytes (bsock=0x8627710, ptr=0xb69c6324 ,
nbytes=4) at bnet.c:86
#3  0x080a5918 in bnet_recv (bsock=0x8627710) at bnet.c:207
#4  0x08089989 in handle_UA_client_request (arg=0x8627710) at
ua_server.c:138
#5  0x080c5dbe in workq_server (arg=0x80ea3a0) at workq.c:355
#6  0x0071f433 in start_thread () from /lib/libpthread.so.0
#7  0x0066ba1e in clone () from /lib/libc.so.6

Thread 1 (Thread -1208183088 (LWP 2529)):
#0  0x00a74402 in __kernel_vsyscall ()
#1  0x00725606 in __nanosleep_nocancel () from /lib/libpthread.so.0
#2  0x080a2e05 in bmicrosleep (sec=60, usec=0) at bsys.c:67
#3  0x0807022e in wait_for_next_job (one_shot_job_to_run=0x0) at
scheduler.c:130
#4  0x0804dbad in main (argc=0, argv=0xbf9fecc4) at dird.c:274
#0  0x00a74402 in __kernel_vsyscall ()
No symbol table info available.
#1  0x00725606 in __nanosleep_nocancel () from /lib/libpthread.so.0
No symbol table info available.
#2  0x080a2e05 in bmicrosleep (sec=60, usec=0) at bsys.c:67
67  bsys.c: No such file or directory.
in bsys.c
Current language:  auto; currently c++
timeout = {tv_sec = 60, tv_nsec = 0}
tv = {tv_sec = 0, tv_usec = 5}
tz = {tz_minuteswest = 4, tz_dsttime = 1}
stat = 140670688
#3  0x0807022e in wait_for_next_job (one_shot_job_to_run=0x0) at
scheduler.c:130
130 scheduler.c: No such file or directory.
in scheduler.c
jcr = (JCR *) 0x86265f8
job = (JOB *) 0xbf9feba8
run = (RUN *) 0x80ad913
now = 140666360
prev = 268435456
next_job = (job_item *) 0x0
first = false
#4  0x0804dbad in main (argc=0, argv=0xbf9fecc4) at dird.c:274
274 dird.c: No such file or directory.
in dird.c
ch = -1
jcr = (JCR *) 0xbf9febf8
no_signals = 0
test_config = 0
uid = 0xbf9ffbd9 bacula
gid = 0xbf9ffbe3 bacula
#0  0x in ?? ()
No symbol table info available.
#0  0x in ?? ()
No symbol table info available.
#0  0x in ?? ()
No symbol table info available.


-
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=lnkkid=120709bid=263057dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] unwanted feature in winbacula

2007-01-22 Thread Miki Lewinger
Hello,

Currently any user (even non-admins) can stop the bacula file server 
service on winnt-2k-xp workstations at will. This is a very unusual 
unwanted feature. Can it be fixed in later versions ? If not what is 
the rational behind such behavior ?

Thks,

Miki Lewinger
BGU
Another happy bacula user


-
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.phpp=sourceforgeCID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Some remarks

2007-01-21 Thread Miki Lewinger
Hello,

This is my first mail to the list, so first let me publicly congratulate 
Kern and all the other developers for the EXCELLENT product.

Some remarks

1) I have yet to succeed in a migrate job. In the migrate job 
documentation (Chapter 26), the Client directive - does it refer to 
the director's own FD ? What is the regex syntax ?

2) In the windows bacula version, a regular user should not be able to 
shut down the bacula daemon, as it is currenly implemented now. Can this 
be reversed to a regular daemon behavior ie only admins can switch 
bacula off, or is this a matter of bacula's ACL, or Windows privileges ?

3) I feel that the bacula-dir.conf file is manageable up to a certain 
number of clients/jobs... It doesn't scale up well to more than X (in my 
case x=35). Shouldn't this be saved in the bacula sql database as well ? 
Thus, the clients, jobs, storage, etc directives could be more easily 
separated from each other, and SQL queries used for the different 
resources. Separating the different resources in separate conf files 
doesn't sound much of an improvement IMO...

4) Currently there are different fileset include and exclude syntax. 
Why not use the same extended syntax (@,,|,\\, etc) in both ? If I'm 
not wrong this has been remarked in the docs but I can't say for sure where.

5) Installation in MACOSX is a breeze, if someone needs more info please 
write the list.

Cheers,

Miki L.
BGU


-
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.phpp=sourceforgeCID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] ntbackup in bacula

2007-01-21 Thread Miki Lewinger




C:\WINDOWS\system32\ntbackup ?
C:\WINDOWS\system32\ntbackup.exe !

:)

Miki L.
BGU




-
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.phpp=sourceforgeCID=DEVDEV___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] mysql.h

2006-11-14 Thread Miki Lewinger
Hello,

The syntax of the defaultconfig file is wrong, use the prefixes

--with-mysql=yes
--with-mysql-dir=/$HOME/bacula/mysql

and the line subsys-dir should be changed, in my config it looks like

--with-subsys-dir=$HOME/bacula/bin/subsys

Cheers,

Miki

Philip Wege wrote:
 Hi
 
 Just got bacula read the install instructions , I keep on getting this
 error even when mysql is running.
 
 configure: error: Unable to find mysql.h in standard locations
 
 I can't find any reference to an error like this in the documentation.
 Also the file mysql.h does not excist on the box which is running mysql.
 trying to install on a suse 9.3 server.
 Any help appreciated.
 
 
 
 
 ---
 SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
 from IBM. Find simple to follow Roadmaps, straightforward articles,
 informative Webcasts and more! Get everything you need to get up to
 speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click


-
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=lnkkid=120709bid=263057dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users