HP-UX AAA Server A.08.00.01 Administrator's Guide

/opt/aaa/remotecontrol/rmistart.sh >/dev/null 2>&1
fi
6. Look for the following entry:
# stop the daemon!!!
if [[ -x /opt/aaa/remotecontrol/rmistop.sh ]];
then
/opt/aaa/remotecontrol/rmistop.sh >/dev/null 2>&1
fi
7. Change the then statement to stop the RMI objects as the aaa user during
shutdown:
Change:
if [[ -x /opt/aaa/remotecontrol/rmistop.sh ]];
then
/opt/aaa/remotecontrol/rmistop.sh >/dev/null 2>&1
fi
To:
if [[ -x /opt/aaa/remotecontrol/rmistop.sh ]];
then
/usr/bin/su - aaa -c /opt/aaa/remotecontrol/rmistop.sh
>/dev/null 2>&1
fi
8. Look for the following entry:
/opt/aaa/bin/rad_admin.sh start all > /dev/null 2>&1
9. To start all the HP-UX AAA Servers as the aaa user during reboot, modify the
statement as follows:
/usr/bin/su - aaa -c /opt/aaa/bin/rad_admin.sh start all >/dev/null 2>&1
10. Look for the following entry:
/opt/aaa/bin/rad_admin.sh stop all > /dev/null 2>&1
11. To stop all the HP-UX AAA Servers as the aaa user during shutdown, modify the
statement as follows:
/usr/bin/su - aaa -c /opt/aaa/bin/rad_admin.sh stop all >/dev/null 2>&1
12. If you are implementing the SQL Access feature, add the following environment
variable settings in the users .profiles file in the home directory:
(For ODBC only)
export ODBCINI=path/odbc.ini
(For OCI and ODBC)
export SHLIB_PATH=${SHLIB_PATH}:Path for odbc/oci client libraries
68 Installing and Securing the HP-UX AAA Server