HP-UX AAA Server A.07.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. 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
Securing the HP-UX AAA Server 61