Wednesday 25 October 2017

ArcSight Connector: Fix "Error: missing 'server' JVM at 'install location'

I have encountered the following error on numerous occasions when installing ArcSight Connectors:

Error: missing 'server' JVM at '$Connector_Install_Location$/current/jre/lib/i386/server/libjvm.so'

The fix is really easy. Install the Open JDK for 1.7.0

yum install Java-1.7.0-openjdk

Once installed delete the jre folder in the Connector you are deploying. The jre folder is located at:

$Connector_Install_Location$/current/jre/

so do:

rm -rf  $Connector_Install_Location$/current/jre

Once deleted, copy the Open JDK files over to the Connector folder with:

cp -r /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/  $Connector_Install_Location$/current/jre

You can then run the agent setup without issues.

No comments:

Post a Comment