I've just placed the first Debian server for production use in the rack at work. This is running Nagios and MRTG for our Network Operations Centre.
This needs to be added to our backup schedule. We're using VERTIAS Backup Exec 10 for Windows as our media server. No problem, I though. We have the UNIX/Linux agent installation on CD. I've used the ArvServe UNIX agent in the past and this was a piece of cake to install. The VERITAS agent wasn't quite as simple.
I've typed up a few notes on how to install the VERTIAS agent under Debian. Credit to newvibes.net which helped me out initially. A few things needed to be changed...
First, install the following packages:
aptitude install libstdc++2.10-glibc2.2
aptitude install alien
Edit /etc/services and at the end should be a "Local" section. Add to this:
ndmp 12000/tcp # Network Data management Protocol (Vertias Backup Exec)
grfs 6101/tcp # Backup Exec Agent
Create a group called beoper and add root to it:
groupadd beoper
useradd root beoper
Mount the CDROM containing the UNIX agent and copy the "linux" directory to your system:
mount /media/cdrom
cp -Rp /media/cdrom/linux /tmp
Convert the RPMs to deb packages using alien and install the deb packages:
cd /tmp/linux/pkgs/linux
alien VRTSralus-10.00.5629-0.i386.rpm
alien VRTSvxmsa-4.2.1-211.i386.rpm
dpkg -i vrtsralus_10.00.5629-1_i386.deb
dpkg -i vrtsvxmsa_4.2.1-212_i386.deb
Once installed, edit the /etc/VRTSralus/ralus.cfg file to point the agent to your Windows VERITAS media server. "Server1" below can be a DNS name (ensure it can be resolved) or an IP address:
Software\VERITAS\Backup Exec\Engine\Agents\Agent Directory List A=server1
I noticed the init script didn't actually stop the beremote process. To resolve this, I had to edit /opt/VRTSralus/bin/VRTSralus.init and replace -SIGTERM for -9 at lines 76 and 78.
Set the agent to start when the system boots:
cd /etc/rc2.d
ln -s /opt/VRTSralus/bin/VRTSralus.init S30VRTSralus
Finally, keep your fingers crossed and start the agent:
/etc/rc2.d/S30VRTSralus start
Edit the backup job on the Windows VERITAS media server and drill down remote selections. "UNIX agents" should now appear. You will need to create a new logon account in VERITAS. You should be prompted to do this. Use the root account.
|