{"id":79,"date":"2019-07-09T07:09:39","date_gmt":"2019-07-09T07:09:39","guid":{"rendered":"https:\/\/www.ssls.com\/knowledgebase\/?p=79"},"modified":"2019-07-29T14:07:22","modified_gmt":"2019-07-29T14:07:22","slug":"how-to-install-an-ssl-certificate-on-a-tomcat-server","status":"publish","type":"post","link":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/","title":{"rendered":"How to install an SSL certificate on a Tomcat server"},"content":{"rendered":"<p><a href=\"#PKCS7\">PKCS#7 (.p7b)<\/a><br \/>\n<a href=\"#PEM\">PEM (.crt)<\/a><br \/>\n<a href=\"#PKCS12\">PKCS#12 (.pfx)<\/a><\/p>\n<p>After the certificate is issued, you can proceed with its installation on Tomcat server.<\/p>\n<p>Depending on the certificate format in which you received the certificate from the Certificate Authority, there are different ways of importing the files into the keystore.<\/p>\n<h4 id=\"PKCS7\"><em><strong>PKCS#7 (.p7b)<\/strong><\/em><\/h4>\n<p>If the certificate you received is in PKCS#7 format (the extension of the certificate file will be .p7b or .cer), it already includes the necessary intermediate and root certificates. Additionally, a certificate with .p7b extension can be <a href=\"https:\/\/www.ssls.com\/knowledgebase\/can-i-download-certificate-somewhere-on-your-site\" target=\"_blank\" rel=\"noopener noreferrer\">downloaded<\/a> in the user account. Run the following command to import it into the keystore:<\/p>\n<p><strong><span class=\"wysiwyg-color-blue90\"><em>keytool -import -trustcacerts -alias tomcat -keystore example.jks -file example.p7b<\/em><\/span><\/strong><\/p>\n<p><span class=\"wysiwyg-color-blue90\"><em><img decoding=\"async\" src=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\"><\/em><\/span><\/p>\n<p>If the certificate was imported successfully, you will see the message \u2018<em>Certificate reply was installed in keystore<\/em>\u2019. You can check the details of the certificate that was imported to the keystore with a command:<\/p>\n<p><strong><em>keytoo<span class=\"wysiwyg-color-blue90\">l -list &#8211;<\/span>keystore<span class=\"wysiwyg-color-blue90\"> example.<\/span>jks<span class=\"wysiwyg-color-blue90\"> \u2013v<\/span><\/em><\/strong><\/p>\n<p><strong><strong><img decoding=\"async\" src=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_3.SSLs_.jpg\"><\/strong><\/strong><\/p>\n<p><strong><strong>&nbsp;<\/strong><\/strong><\/p>\n<h4 id=\"PEM\"><em><strong>PEM (.crt)<\/strong><\/em><\/h4>\n<p>If you received the certificate in the PEM format ( files will be with the .crt extension), you will need to import the root certificate, intermediate certificates and the certificate issued for your domain name to the keystore separately starting from a root certificate and ending with the certificate for your domain name.<\/p>\n<p>To import a root certificate, run the following command:<\/p>\n<p><strong><span class=\"wysiwyg-color-blue90\"><em>keytool -import -alias root -keystore example.jks -trustcacerts -file root.crt<\/em><\/span><\/strong><\/p>\n<p>To import an intermediate certificate:<\/p>\n<p><strong><span class=\"wysiwyg-color-blue90\"><em>keytool -import -alias intermediate -keystore example.jks -trustcacerts -file intermediate.crt<\/em><\/span><\/strong><\/p>\n<p><strong>!Note:<\/strong> Some certificates have several intermediate certificates, and all of them should be imported into the keystore in the correct order, starting from the certificate that was signed by the root and finishing with the intermediate certificate that signs the end-entity certificate for a domain. You need to use different aliases for different intermediate certificates. For example, for COMODO (<a href=\"https:\/\/www.ssls.com\/knowledgebase\/comodo-ca-rebrands-as-sectigo\">now Sectigo<\/a>) PositiveSSL certificate, first you need to import root certificate <em>AddTrustExternalCARoot.crt, <\/em>then intermediate certificate <em>COMODORSAAddTrustCA.crt <\/em>and finally, <em>COMODORSADomainValidationSecureServerCA.crt<\/em><\/p>\n<p>So, after the root and intermediate certificates are imported, import the certificate issued for the domain name with the following command:<\/p>\n<p><strong><span class=\"wysiwyg-color-blue90\"><em>keytool -import -alias tomcat -keystore example.jks -file example.crt<\/em><\/span><\/strong><\/p>\n<p>The alias should coincide with the one you indicated when creating the keystore.<\/p>\n<p><strong><strong><img decoding=\"async\" src=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_2_SSLs.jpg\"><\/strong><\/strong><\/p>\n<p>After the successful import you need to edit Tomcat configuration file. As a rule, it is called <em>server.xml<\/em> and usually can be found in <strong><em>Home_Directory\/conf<\/em><\/strong> folder.<\/p>\n<p>By default it should look something like this:<\/p>\n<p><span class=\"wysiwyg-color-blue90\"><em>&lt;Connector port=&#8221;443&#8243; protocol=&#8221;HTTP\/1.1&#8243;<br \/>\nSSLEnabled=&#8221;true&#8221;<br \/>\nscheme=&#8221;https&#8221; secure=&#8221;true&#8221; clientAuth=&#8221;false&#8221;<br \/>\nsslProtocol=&#8221;TLS&#8221; keystoreFile=&#8221;\/your_path\/yourkeystore.jks&#8221;<br \/>\nkeystorePass=&#8221;password_for_your_key_store&#8221; \/&gt;<\/em><\/span><\/p>\n<p>You need to modify the directive <em>keystoreFile<\/em> with the path to the location of your keystore file, and <em>keystorePass<\/em> with the password of the keystore.<\/p>\n<p>If this is the first time you are configuring SSL certificate on Tomcat, first you will need to uncomment the SSL Connector configuration by removing the &lt;!&#8211; and &#8211;&gt; around the section you want to uncomment. Also, <em>keystoreFile and keystorePass <\/em>lines may be missing &#8211; you will need to manually enter these directives.<\/p>\n<p>If your keystore contains more than one private key alias, you need to add \u2018<em>keyAlias<\/em>\u2019 directive with the reference to a needed alias.<\/p>\n<p><em><strong>keyAlias=&#8221;tomcat&#8221;<\/strong><\/em><strong><br \/>\n<\/strong><strong><br \/>\n<\/strong>Save the changes and restart Tomcat web service.<\/p>\n<h4 id=\"PKCS12\"><em><strong>PKCS#12 (.pfx)<\/strong><\/em><\/h4>\n<p>If you have the key in PEM format, create the certificate in PKCS#12 format using <a href=\"https:\/\/decoder.link\/converter\">this tool<\/a> (PEM TO PKCS#12).<\/p>\n<p>Other than that, use the following command:<\/p>\n<p><strong><span class=\"wysiwyg-color-blue\"><em>openssl pkcs12 -export -out your_pfx_certificate.pfx -inkey your_private.key -in your_pem_certificate.crt -certfile CA-bundle.crt<\/em><\/span><\/strong><\/p>\n<p><span style=\"font-weight: 400;\">To have .pfx or .p12 file working on Tomcat without unpacking it into a new keystore, you can simply specify it in the connector for the necessary port with <em><strong>keystoreType<\/strong><strong>=&#8221;PKCS12<\/strong><strong>&#8220;<\/strong><\/em> directive added.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">You can check the installation using this online <a href=\"https:\/\/sslchecker.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">tool<\/a>.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PKCS#7 (.p7b) PEM (.crt) PKCS#12 (.pfx) After the certificate is issued, you can proceed with its installation on Tomcat server. Depending on the certificate format in which you received the certificate from the Certificate Authority, there are different ways of importing the files into the keystore. PKCS#7 (.p7b) If the certificate you received is in ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-79","post","type-post","status-publish","format-standard","hentry","category-ssl-installation-instructions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com\" \/>\n<meta property=\"og:description\" content=\"PKCS#7 (.p7b) PEM (.crt) PKCS#12 (.pfx) After the certificate is issued, you can proceed with its installation on Tomcat server. Depending on the certificate format in which you received the certificate from the Certificate Authority, there are different ways of importing the files into the keystore. PKCS#7 (.p7b) If the certificate you received is in ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\" \/>\n<meta property=\"og:site_name\" content=\"SSL Certificate Knowledgebase | SSLs.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SSLsCom\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-09T07:09:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-29T14:07:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\" \/>\n<meta name=\"author\" content=\"sslbizdev\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:site\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sslbizdev\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\"},\"author\":{\"name\":\"sslbizdev\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\"},\"headline\":\"How to install an SSL certificate on a Tomcat server\",\"datePublished\":\"2019-07-09T07:09:39+00:00\",\"dateModified\":\"2019-07-29T14:07:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\"},\"wordCount\":650,\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\",\"articleSection\":[\"SSL Installation instructions\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\",\"name\":\"How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\",\"datePublished\":\"2019-07-09T07:09:39+00:00\",\"dateModified\":\"2019-07-29T14:07:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\",\"contentUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ssls.com\/knowledgebase\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install an SSL certificate on a Tomcat server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"name\":\"SSL Certificate Knowledgebase | SSLs.com\",\"description\":\"SSL Knowledgebase | SSLs.com\",\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\",\"name\":\"SSLs.com\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"contentUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"width\":400,\"height\":400,\"caption\":\"SSLs.com\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SSLsCom\",\"https:\/\/x.com\/SSLscom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\",\"name\":\"sslbizdev\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"caption\":\"sslbizdev\"},\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/","og_locale":"en_US","og_type":"article","og_title":"How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com","og_description":"PKCS#7 (.p7b) PEM (.crt) PKCS#12 (.pfx) After the certificate is issued, you can proceed with its installation on Tomcat server. Depending on the certificate format in which you received the certificate from the Certificate Authority, there are different ways of importing the files into the keystore. PKCS#7 (.p7b) If the certificate you received is in ..Read more","og_url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/","og_site_name":"SSL Certificate Knowledgebase | SSLs.com","article_publisher":"https:\/\/www.facebook.com\/SSLsCom","article_published_time":"2019-07-09T07:09:39+00:00","article_modified_time":"2019-07-29T14:07:22+00:00","og_image":[{"url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg","type":"","width":"","height":""}],"author":"sslbizdev","twitter_card":"summary_large_image","twitter_creator":"@SSLscom","twitter_site":"@SSLscom","twitter_misc":{"Written by":"sslbizdev","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#article","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/"},"author":{"name":"sslbizdev","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806"},"headline":"How to install an SSL certificate on a Tomcat server","datePublished":"2019-07-09T07:09:39+00:00","dateModified":"2019-07-29T14:07:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/"},"wordCount":650,"publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg","articleSection":["SSL Installation instructions"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/","url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/","name":"How to install an SSL certificate on a Tomcat server \u2013 HelpDesk | SSLs.com","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg","datePublished":"2019-07-09T07:09:39+00:00","dateModified":"2019-07-29T14:07:22+00:00","breadcrumb":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#primaryimage","url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg","contentUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/Tomcat_Instal_1_SSLs.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-a-tomcat-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ssls.com\/knowledgebase\/"},{"@type":"ListItem","position":2,"name":"How to install an SSL certificate on a Tomcat server"}]},{"@type":"WebSite","@id":"https:\/\/www.ssls.com\/knowledgebase\/#website","url":"https:\/\/www.ssls.com\/knowledgebase\/","name":"SSL Certificate Knowledgebase | SSLs.com","description":"SSL Knowledgebase | SSLs.com","publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization","name":"SSLs.com","url":"https:\/\/www.ssls.com\/knowledgebase\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/","url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","contentUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","width":400,"height":400,"caption":"SSLs.com"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SSLsCom","https:\/\/x.com\/SSLscom"]},{"@type":"Person","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806","name":"sslbizdev","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","caption":"sslbizdev"},"url":"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-05-23 01:15:06","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"category","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/79","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=79"}],"version-history":[{"count":5,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/79\/revisions"}],"predecessor-version":[{"id":1589,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/79\/revisions\/1589"}],"wp:attachment":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=79"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=79"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=79"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}