RE: Backup Exec v12

2008-09-02 Thread Johnson, James
Thanks, I'll try that today.

I'll let you know...

James Johnson
System Administrator
Desk 858-207-5591
Main 858-592-6262
Fiserv - Emerald Publications

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Norberto
Meijome
Sent: Thursday, August 21, 2008 5:04 AM
To: freebsd-questions@freebsd.org
Subject: Re: Backup Exec v12

On Wed, 20 Aug 2008 21:41:35 -0700
Johnson, James [EMAIL PROTECTED] wrote:

 Does anyone have any experience installing the backup exec agent
(BEWS_12.1364_LINUX-UNIX-MAC_AGENTS.tar.gz) on Freebsd 7.

i don't recall if it's v12 that i've used,but it runs relatively well -
just make sure you have linux compatibility layer enabled.


 I've been trying for the past few days with no progress. I called for
support, but guess what Symantec does not support Freebsd.

i hope you really didn't expect something useful out of that call ... :)

 # ./installralus
 Not Supported Yet.
 ./installralus: ./perl//bin/perl: not found
 
[...]
 
 
 vmFreebsd# find / -name perl
 /usr/bin/perl
 /usr/local/bin/perl
[...]

 
 ./perl/$OS/bin/perl -I. -I$PATH -I$VXIF_HOME
-I./perl/$OS/lib/$PERL_VER installr
 alus.pl $*

have u tried changing that call to perl to the /usr/local/bin/perl ? 

at least in some versions I tried, all you have to do is run the exec ,
forget the installer, it worked ok for me.. YMMV

B

_
{Beto|Norberto|Numard} Meijome

If you were supposed to understand it, we wouldn't call it 'code'.

I speak for myself, not my employer. Contents may be hot. Slippery when
wet. Reading disclaimers makes you go blind. Writing them is worse. You
have been Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Backup Exec v12

2008-08-20 Thread Johnson, James
Does anyone have any experience installing the backup exec agent 
(BEWS_12.1364_LINUX-UNIX-MAC_AGENTS.tar.gz) on Freebsd 7.

I've been trying for the past few days with no progress. I called for support, 
but guess what Symantec does not support Freebsd.


# ./installralus
Not Supported Yet.
./installralus: ./perl//bin/perl: not found

Two things here:

1. Not support Yet.
But I'm sure although not support, there has to be a way to still install it.

2. 


vmFreebsd# find / -name perl
/usr/bin/perl
/usr/local/bin/perl

And Perl -v shows the version, so I know it's there. I just need to change the 
path were the installer is looking of perl, right?

Here is the content is installralus:


vmFreebsd# vi installralus
#!/bin/sh

VXIF_HOME=./;export VXIF_HOME
VXIF_ORIGENVLANG=$LANG;export VXIF_ORIGENVLANG
PERL_UNICODE=1;export PERL_UNICODE

# Let's get the type of Machine we are running on this platform
HDWR_TYPE=`uname -m`

# Use our own distribution of Perl (VRTSperl)
case `uname` in
SunOS)
if [ $HDWR_TYPE = i86pc ] ; then
if [ -f ./RALUSx86/installralus ] ; then
cd ./RALUSx86
./installralus $*
else
echo ERROR: Unable to launch Solaris x86 instal
ler.
fi
exit 1
fi

OS=SunOS;export OS
PERL_VER=5.8.8;export PERL_VER
;;

Linux)
if [ $HDWR_TYPE = x86_64 ] ; then
if [ -e ./RALUS64/installralus ] ; then
cd ./RALUS64
./installralus $*
else
echo ERROR: Unable to launch Linux 64-bit insta
ller.
fi
exit 1
fi
OS=Linux;export OS
PERL_VER=5.8.8;export PERL_VER
;;
HP-UX)
OS=HPUX;export OS
PERL_VER=5.8.6;export PERL_VER
;;
AIX)
OS=AIX;export OS
PERL_VER=5.8.6;export PERL_VER
;;
*)
echo Not Supported Yet.
;;
esac

if [ -z $VXIF_HOME ] ; then
echo ERROR: Environment variable VXIF_HOME is not defined. Exiting ...

exit 1;
fi

if [ ! -d ${VXIF_HOME}/VxIF ] ; then
echo ERROR: VXIF_HOME is invalid. It must point to the root of VxIF. Ex
iting ... 
exit 1;
fi

./perl/$OS/bin/perl -I. -I$PATH -I$VXIF_HOME -I./perl/$OS/lib/$PERL_VER installr
alus.pl $*


James Johnson

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

mysql and BIND 9.4.2

2008-08-11 Thread Johnson, James
Does any know how to make mysql and BIND work together.

 

I found this, it's similar to what I want to do.

 

http://gentoo-wiki.com/HOWTO_Setup_Bind_with_DLZ,_MySQL_and_replication

 

 

James Johnson

 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: mysql and BIND 9.4.2

2008-08-11 Thread Johnson, James
Thanks Chris, I'll look into this. Have you or anyone you know ever set
something like this before? What I'm trying to do is replace our name
servers, they will be Virtualized.


James Johnson


-Original Message-
From: Chris Hastie [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2008 3:04 PM
To: Johnson, James
Subject: Re: mysql and BIND 9.4.2

On 11/08/08 19:17, Johnson, James wrote:
 Does any know how to make mysql and BIND work together.

   

Configure bind with --with-dlz-mysql. I seem to recall that using
--disable-threads is also recommended with MySql. Lots of info at
http://bind-dlz.sourceforge.net/

There is an issue with bind giving up if the MySQL server goes away,
which is helped by this patch:

--- contrib/dlz/drivers/dlz_mysql_driver.c.orig 2007-11-15
09:08:05.0 +
+++ contrib/dlz/drivers/dlz_mysql_driver.c  2007-11-15
09:10:49.0 +
@@ -923,6 +923,13 @@
pass = getParameterValue(argv[1], pass=);
socket = getParameterValue(argv[1], socket=);

+if(mysql_options((MYSQL *) dbi-dbconn, MYSQL_OPT_RECONNECT,
1)) {
+   isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE,
+ DNS_LOGMODULE_DLZ, ISC_LOG_ERROR,
+ Could not set database reconnect
option);
+}
+
+
for (j=0; dbc == NULL  j  4; j++)
dbc = mysql_real_connect((MYSQL *) dbi-dbconn, host,
 user, pass, dbname, port,
socket,


-- 
Chris Hastie
Find tree care advice at http://www.tree-care.info/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]