Agents Administration - Tests
 

Pre-requisites for monitoring Oracle Cluster

A KeyStore consists of a database containing a private key and an associated certificate, or an associated certificate chain. The certificate chain consists of the client certificate and one or more certification authority (CA) certificates. The SSL certificate obtained from the certificate authority needs to be imported into the Java keystore.

First copy the default keystore $JDK_HOME/lib/security/cacerts.

Import the certificate to the cacerts keystore using the following command, replacing variables as noted below:

keytool -trustcacerts -keystore $JDK_HOME/lib/security/cacerts -storepass changeit -alias $ALIAS -importcert -file $CERT

  • Replace $JDK_HOME with your actual JDK home path.

  • Replace $CERT with the path to your certificate the you previously installed to the system.

  • Replace $ALIAS with the preferred alias to be used in the keystore.

  • Note that changeit is the default password for Java's cacerts file. Check whether it has been changed on your system.