Changing security certificates in App Visibility components
App Visibility components and the properties files that manage certificates
To use your own security certificate, put a certificate on each component, and then edit the properties files on each component to use the new certificates and password.
Before you begin
- Prepare security files for the following components.
For App Visibility server components and App Visibility agents for Java, and for the Presentation server, prepare the following files. For details about creating the files, see the Java Keytool documentation on the Oracle website.
- keystoreFileName.jks, where keystoreFileName is your custom keystore file name
- truststoreFileName.jks, where truststoreFileName is your custom truststore file name
- For App Visibility agents for .NET, prepare the following files. These are the same certificates, but in a different format:
- keystoreFileName.p12, where keystoreFileName is your custom keystore file name, and the file is in X.509/PKCS#12 format
truststoreFileName.cer, where truststoreFileName is your custom certificate file name, and the file is in X.509/PKCS#7 format
- (For multitenancy) In a multitenancy environment, you can prepare one set of keystore and truststore files for each tenant. If you do not specify separate files for a tenant, the designated default certificate will be used.
- Prepare an encrypted password (instructions near the end of this topic) for each security file. This is the same password that you used to create the keystore.
To replace security files for App Visibility server components
For each App Visibility server component, perform the following procedure.
- Place your keystore and truststore files on each component computer.
- Open the specified properties file (see the following table).
- Replace the default path and file name of the keystore and truststore with the path and file name of your files.
- Replace the default password with your encrypted password value.
The system uses the password only for the keystore. - Save the file and restart the service.
The following table lists the file paths and file names of the properties files for the App Visibility server components. The keystore and truststore files are located in the installationDirectory/component/security directory (default installationDirectory is C:\Program Files\BMC Software\App Visibility for Windows and /opt/bmc/App_Visibility for Linux).
In the properties files, you must provide a relative path to the keystore and truststore files in the security directory.
App Visibility server security files and parameters
Properties file | Parameter* |
---|---|
portalInstallationDirectory/portal/properties/portal.properties | key.store.file.path=relativePath/keystoreFileName.jks |
collectorInstallationDirectory/collector/properties/collector.properties | key.store.file.path=relativePath/keystoreFileName.jks |
proxyInstallationDirectory/apm-proxy/properties/apm-proxy.properties | key.store.file.path=relativePath/keystoreFileName.jks |
* Use a forward slash (/) for file paths, even on Windows systems.
To replace security files for App Visibility agents for Java
For each App Visibility agent for Java, perform the following procedure.
- Place your keystore and truststore files in the agentInstallationDirectory /ADOPsInstall/properties directory on each computer where the agent for Java is installed.
- Open the portal.connection.properties file, located in the agentInstallationDirectory /ADOPsInstall/properties directory.
Replace the default file name of the keystore and truststore with the names of your files:
key.store.file.name=keystoreFileName.jks
trust.store.file.name=truststoreFileName.jksReplace the default password with your encrypted password value:
key.store.password.enc=encryptedPassword
The system uses the password only for the keystore.
- Save the file and restart the application server.
To replace security files for App Visibility agents for .NET
For each App Visibility agent for .NET, perform the following procedure.
- Place your keystore and truststore files in the agentInstallationDirectory/properties directory on each computer where the agent for .NET is installed.
- Open the agents.properties file, located in the agentInstallationDirectory/properties directory.
Replace the default path and file name of the keystore and truststore with the path and file name of your files:
key.store.file.name=keystoreFileName.p12
trust.store.file.name=truststoreFileName.cerReplace the default password with your encrypted password value.
key.store.password.enc=encryptedPassword
The system uses the password only for the keystore.
- Save the file and restart IIS.
To replace security files for communication with the Presentation Server (on premises)
Certificate details for internal communication between the Presentation Server and the App Visibility portal are managed by the App Visibility certificates file, appVisCertificates.xml, which contains default certificate information and is located on the Presentation Server.
You can use your own default certificate and update the values of the default-certificate element in the appVisCertificates.xml file. In an environment with multiple tenants, you can add a tenant-certificate element for each tenant. If you do not define a tenant-certificate for one or more tenants, those tenants use the default-certificate values, instead.
Place your keystore file and (optional) truststore file (or multiple files for multiple tenants) on the Presentation Server computer.
- Open the appVisCertificates.xml file, located in the tspsInstallationDirectory/conf directory.
- Update the following elements, as required:*
To replace the default certificate, replace the default path and file name of the keystore and (optional) the truststore, and the password with the values for your keystore file:
<default-certificate path="conf/secure/appVisSecure/keystoreFileName.jks" password="encryptedPassword" truststorePath="conf/secure/appVisSecure/truststoreFileName.jks"/>Replace the following values:
- keystoreFileName
- encryptedPassword
- truststoreFileName
To add a certificate for one or more tenants, add the following element for each tenant, and use your values for the tenant name, path and file name of the keystore file and (optional) truststore files, and the encrypted password.
<tenant-certificate tenant="tenant1Name" path="conf/secure/appVisSecure/keystoreFileName.jks" password="encryptedPassword" truststorePath="conf/secure/appVisSecure/truststoreFileName.jks"/><tenant-certificate tenant="tenant2Name" path="conf/secure/appVisSecure/keystoreFileName.jks" password="encryptedPassword" truststorePath="conf/secure/appVisSecure/truststoreFileName.jks"/>
Replace the following values:
- tenant1Name, tenant2Name
- keystoreFileName
- encryptedPassword
- truststoreFileName
- Save the file and restart the Presentation Server service by running the following command:
Failed to execute the [excerpt-include] macro.
* Use a forward slash (/) for file paths, even on Windows systems.
Encrypting a new keystore password for the App Visibility server properties files
Use an encrypted password so that the plain text password is not displayed in your App Visibility server properties files. After you encrypt the new password, copy the encrypted password to the relevant properties file.
To encrypt a new keystore password
Encrypt the password with the provided script, located on the portal or collector computer.
Windows
On the App Visibility portal or collector computer, open a command prompt, and run the following command:
portalInstallationDirectory/portal/bin/passwordEncrypt.bat NewPassword
or
collectorInstallationDirectory/collector/bin/passwordEncrypt.bat NewPasswordNewPassword is the password you want to encrypt.
A message is displayed while the password is encrypted and upon completion, the encrypted password is displayed.- Copy the encrypted password and paste it in the relevant properties file.
Linux
- On the App Visibility portal or collector computer, change to the required directory:
- portalInstallationDirectory/portal/bin
- collectorInstallationDirectory/collector/bin
Run the following command:
./passwordEncrypt.sh NewPassword
NewPassword is the password you want to encrypt.
A message is displayed while the password is encrypted and upon completion, the encrypted password is displayed.- Copy the encrypted password and paste it in the relevant properties file.