HP-UX AAA Server A.08.02.10 Administrator's Guide HP-UX 11i v3 (T1428-90093, November 2013)

# 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 user’s .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
48 Installing and Securing the HP-UX AAA Server