Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-11-04 Thread Isabel Bermejo
script to let bacula reads from the fifofiles and no wait for the script? I'v read that this can be accomplish using 'exec>/dev/null' so I use it in my script, but I think this is not enough Thanks ISABEL -----Mensaje original----- De: Arno Lehmann [mailto:[EMAIL PROTECTED] Env

Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-11-03 Thread Arno Lehmann
to a > fifofile while the client reads that file backing up the database whitout > using extra space. > > Now, my question is: Do you mean that I have to define the fifo only in one > of the resource? Which will be a correct configuration? I'm confused about > all the documents

Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-11-03 Thread Arno Lehmann
> Thank you > ISABEL > > > -Mensaje original- > De: Arno Lehmann [mailto:[EMAIL PROTECTED] > Enviado el: viernes, 31 de octubre de 2008 11:04 > Para: bacula-users@lists.sourceforge.net > Asunto: Re: [Bacula-users] Storage daemon didn't accept Device > &qu

Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-10-31 Thread Isabel Bermejo
ISABEL -Mensaje original- De: Isabel Bermejo [mailto:[EMAIL PROTECTED] Enviado el: viernes, 31 de octubre de 2008 11:35 Para: Arno Lehmann; bacula-users@lists.sourceforge.net Asunto: Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage" Hi Yes, the script

Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-10-31 Thread Isabel Bermejo
ts I've read Thank you ISABEL -Mensaje original- De: Arno Lehmann [mailto:[EMAIL PROTECTED] Enviado el: viernes, 31 de octubre de 2008 11:04 Para: bacula-users@lists.sourceforge.net Asunto: Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage" Hi, 31

Re: [Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-10-31 Thread Arno Lehmann
Hi, 31.10.2008 10:27, Isabel Bermejo wrote: > Hi > I'm trying to backup MySQL database using bacula and a FifoStorage. First I > configure a script named "backwithfifo" which dumps the database. > > #!/bin/sh > # > exec > /dev/null > SCRIPTDIR=/usr/bin > mkfifo /tmp/tmpfifo > cd $SCRIPTDIR > ./my

[Bacula-users] Storage daemon didn't accept Device "FifoStorage"

2008-10-31 Thread Isabel Bermejo
Hi I'm trying to backup MySQL database using bacula and a FifoStorage. First I configure a script named "backwithfifo" which dumps the database. #!/bin/sh # exec > /dev/null SCRIPTDIR=/usr/bin mkfifo /tmp/tmpfifo cd $SCRIPTDIR ./mysqldump -h localhost -u root -pclipper iesa > /tmp/tmpfifo res=$? i