I just put several machines up on Linux 2.4.7-10 (RedHat 7.2) Apparently Linux 7.x is supported in later releases of NetBackup. RH 7.x no longer utilizes inetd and uses xinetd instead. The configuration files for 7.x are different. For starters, on the linux client you need to make entries for pts/[0-11] in the /etc/securetty file or rename it so that root can rsh to it. If you are going to do a remote install, you need to edit ftpaccess and ftpusers files to allow a remote root user to set up the netbackup files. To install the files you need to do the following:
(It should be noted that anytime that you make changes to the /etc/services file on RH Linux 7.x you need to make the apropriate changes in the files in /etc/xinetd.d.)
on the Netbackup server as root execute:
# /usr/openv/netbackup/bin/install_client_files ftp client_name root
This transfers the files to the /tmp directory on the client
On the client as root execute:
# sh /tmp/bp/bin/client_config
Disregard the error message about the inetd.conf file
Then follow the procedures listed below:
Here's the Veritas technote on Linux clients:
Symptom:
NetBackup install client fails on Linux Redhat version 7.0. Linux Redhat
version 7.0 uses xinetd instead of inetd, along with a different file
structure. This version is not currently supported with NetBackup version
3.4.
Solution:
Linux Redhat vision 7.0 started using xinetd instead of inetd along with
different file structures. The same principles remain regarding inetd. The
file names have changed. The new file is called /etc/xinetd.conf, but this
is not the file that needs to be changed.
The correct process is to go to /etc/inetd.d, create three separate files
under this directory. They should be named bpcd, bpjava-msvc and vopied.
The three files should look like the following:
bpcd File
# description: BPCD server
service bpcd
{
disable = no
id = bpcd-stream
socket_type = stream
protocol = tcp
user = root
wait = no
server = /usr/openv/netbackup/bin/bpcd
}
bpjava-msvc File
# description: bpjava-msvc server
service bpjava-msvc
{
disable = no
id = bpjava-msvc-stream
socket_type = stream
protocol = tcp
user = root
wait = no
server = /usr/openv/netbackup/bin/bpjava-msvc
server_args = -transient
}
vopied File
# description: vopied server
service vopied
{
disable = no
id = vopied-stream
socket_type = stream
protocol = tcp
user = root
wait = no
server = /usr/openv/netbackup/bin/vopied
}
Have fun.....