Change the Default Keystore Password
- Open a console connection to the VM Access Proxy server.
- Run the following command to change the password on the Tomcat key:
           
			keytool -keypasswd -alias tomcat -keystore keystore -storepass <old_keystore_password> 
- Run the following command to change the keystore's password:
           
			keytool -storepasswd -keystore keystore -storepass <old_keystore_password> 
- In the /var/data/conffolder, open the filenano server.xmlfor editing.
- In the Connector section, locate the Connector element that contains the keystoreFileattribute.
- Add the following line, with the appropriate keystore password:
          
				keystorePass=<new_keystore_password> For example: <!-- Define a SSL HTTP/1.1 Connector on port 443 --> 
 <Connector SSLEnabled="true" clientAuth="false" keystoreFile="${catalina.home}/conf/keystore"
 keystorePass="changeit2"
 maxThreads="150" port="8443" protocol="HTTP/1.1" scheme="https" secure="true"
 sslProtocol="TLS"
 sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2"
 ciphers="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"
 />
- In the /var/data/conffolder, open the fileconfig.propertiesfor editing.
- Add the following line to the file:
			consoleproxy.keystore.password = <new_keystore_password> 
- Run the following command to restart the Tomcat service:
				docker stop remoteaccess docker start remoteaccess