We are running AppDynamics 3.3.4 configured with a JAVA application running om Tomcat, Atomikos (trx manager), TopLink - caching and clustering SW, and Oracle 10G. We are doing a POC to replace Atomikos with Redhat EAP 6 and JON. We want to configure EAP 6 with AppDynamics to get the lowel level details for trouble shooting application server issues end-to-end.
what do we configure AppDynamics to work with EAP6?
Hi ,
Can you please try to configure server with javaagent as follows and let us know how it goes:
To add the javaagent command in a Linux environment for JBoss AS 6.x
1. Open the server run.sh file, located at <jboss_version_install_dir>/bin.
2. Add the following Java environment variables to the server start script.
JAVA_OPTS="$JAVA_OPTS -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
JAVA_ARGS="$JAVA_OPTS -Dorg.jboss.logging.Logger.pluginClass=org.jboss.logging.logmanager.LoggerPluginImpl"
JBOSS_CLASSPATH=<path>"jboss-logmanager.jar"
3. Add the following javaagent argument to the server start script.
export JAVA_OPTS="$JAVA_OPTS -javaagent:/agent_install_dir/javaagent.jar"
4. Restart the application server. The application server must be restarted for the changes to take effect.
Do write back to us for further assistance
Thanks,
Arun