Importing the Certificate by Manually Editing the server.xml File

Technical Articles

Solution
Application
Content Type
Technical Documentation
Utilities & Services
ft:locale
en-US
  1. Move your keystore.jks file or SSLCertificate.p12 file into your Jamf Pro Tomcat folder. The location for this folder can be found above.
  2. Edit the server.xml file located in the /Tomcat/conf/ directory. Add or modify the certificateKeystoreFile and certificateKeystorePassword attributes in the Certificate element for port 8443 so that it looks similar to the following:
    <Connector port="8443" protocol="org.apache.coyote.http11.Http11Nio2Protocol"
       SSLEnabled="true" maxThreads="150" scheme="https"
       secure="true" clientAuth="false"
       <SSLHostConfig
              sslProtocol="TLS"
              <Certificate type="RSA"
                     certificateKeystoreFile="${catalina.home}/.keystore"
                     certificateKeystorePassword="changeit" />
  3. Restart Tomcat from the command line. For more information, see the Starting and Stopping Tomcat article.