Modifying the Tomcat File Configuration

This procedure describes the steps to modify the Tomcat file configuration.

  1. Run the following command to edit the server.xml file and update keystoreFile and keystorePass fields:
    sudo vim server.xml
  2. Modify the following tag in the server.xml file and ensure that the keystoreFile field is updated with the latest jks file name and keystorePass with its corresponding password.
    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
    
                   maxThreads="150" scheme="https" secure="true"
    
                   clientAuth="false" sslProtocol="TLS"
    
                   keystoreFile="conf/<JKS file created for WebLogic in the  
                   previous step>.jks"
    
                   keystorePass="<Password used during the creation of 
                   keystore>" />
    
  3. Run the following command to restart the Tomcat server:
    sudo service tomcat6 restart