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