Veritas-bu

[Veritas-bu] RedHat EL3 and NetBackup 4.5

2003-12-17 12:53:07
Subject: [Veritas-bu] RedHat EL3 and NetBackup 4.5
From: jmc AT ksu DOT edu (James Chacon)
Date: Wed, 17 Dec 2003 11:53:07 -0600
On Wed, Dec 17, 2003 at 09:31:51AM -0800, Casey J Feskens wrote:
> I'm about to install my first RedHat Enterprise Linux 3
> system, and I was wondering if anyone else has taken on
> this experience yet.  According to the client matrix,
> this platform is supported in FP6, but we're running MP5.
> 
> According to the matrix, RHEL2.1 is supported by older
> maintenance packs.  RHEL3 is supposed to have compatibility
> libraries to allow 2.1 applications to run.  So I "think"
> we should be safe, but I was curious to find out if anyone
> else has tried this and run into any snags.

Yep. Got a couple here. Basically follow the same guidlines I suggested for
RH9. (setting LD_ASSUME_KERNEL in a wrapper script)

Make sure glibc is patched to current and then do this after installing
netbackup:

cd /usr/openv/netbackup/bin
rm bparchive
ln -s bpbackup+ bparchive+
for i in bp bpbackup bpbkar bpcd bpclimagelist bpclntcmd bpdynamicclient bphdb 
bpjava-msvc bpjava-usvc bplist bpmount bprestore jbpSA jnbSA tar xbp
do 
    mv $i $i+
    echo '#!/bin/sh' > $i
    echo 'LD_ASSUME_KERNEL=2.2.5' >> $i
    echo 'export LD_ASSUME_KERNEL' >> $i
    echo "exec /usr/openv/netbackup/bin/${i}+ \$*" >> $i
    chmod +x $i
done
cat > bparchive <<"EOF"
#!/bin/sh
LD_ASSUME_KERNEL=2.2.5
export LD_ASSUME_KERNEL
exec /usr/openv/netbackup/bin/bparchive+ $*
EOF
chmod +x bparchive

James