Summary
The following message appears when opening the console of Advanced Reporting and Management for InterScan Web Security (ARM) 1.6:
"There is a problem with this website's security certificate.
The security certificate presented by this website was issued for a different website's address."
The security certificate presented by this website was issued for a different website's address."
Details
To resolve the issue, add a private or public certificate to ARM:
- Upload the certificate file to the /var/opt/truviso/apache-tomcat-5.5.23/ directory of ARM.
- Using SSH, log in to ARM as root.
- Create a backup copy of /etc/iwarm/apache-tomcat-5.5.23/conf/server.xml.
- Open the file and look for the “keystoreFile” parameter.
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
keystoreFile="/var/opt/truviso/apache-tomcat-5.5.23/.keystore"
keystorePass="hellohello"
clientAuth="false" sslProtocol="TLS" /> - Replace the value of “keystoreFile” with the newly uploaded certificate file.
- Look for the “keystorePass” parameter.
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
keystoreFile="/var/opt/truviso/apache-tomcat-5.5.23/.keystore"
keystorePass="hellohello"
clientAuth="false" sslProtocol="TLS" /> - Replace the value of “keystorePass” with the password of the certificate file.
- If the uploaded certificate file is in PKCS12/PFX format, add and indent the following on the line below “keystorePass”:
keystoreType="PKCS12"