server.xml ファイルを手動で編集して証明書をインポート

技術に関する記事

Solution
Application
Content Type
テクニカル資料
Utilities & Services
ft:locale
ja-JP
  1. keystore.jks ファイルまたは SSLCertificate.p12 ファイルを Jamf Pro Tomcat フォルダに移動します。このフォルダの場所は上記の通りです。
  2. /Tomcat/conf/ ディレクトリにある server.xml ファイルを編集します。Port 8443 の Certificate 要素にある certificateKeystoreFilecertificateKeystorePassword 属性を追加/修正して、以下と同じようにします。
    <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. コマンドラインから Tomcat を再起動します。詳細については、Tomcat の開始および停止 を参照してください。