Customer would like to install and configure the APMIA agent for non root user using JVM 11.x.
Release : 10.8
Component : Introscope
Extract agent tar file.
rename the default jre folder under the <agent-home> which agent uses by default (it is 1.8).
modify the following in APMIACtrl.sh
In funcation checkJRE()
if [ "$JREPATH" == "jre/bin/java" -o x"$JREPATH" == x ]; then
Change above to:
if [ "$JREPATH" == "<JVM 11 path>/bin/java" -o x"$JREPATH" == x ]; then
modify the following in <agent-home>/conf/wrapper.conf
<agent-home>/conf/wrapper.conf
wrapper.java.command=jre/bin/java
Change above to:
wrapper.java.command=<agent-home>/bin/java
Start APMIA with following command
nohup ./APMIACtrl.sh console_start >> nohup.out 2>&1 &
To stop APMIA
/APMIACtrl.sh console_stop