APMIA installation and configuration for non root user using JVM 11.x
search cancel

APMIA installation and configuration for non root user using JVM 11.x

book

Article ID: 248837

calendar_today

Updated On:

Products

CA Application Performance Management (APM / Wily / Introscope)

Issue/Introduction

Customer would like to install and configure the APMIA agent for non root user using JVM 11.x.

Environment

Release : 10.8

Component : Introscope

Resolution

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