{"id":608,"date":"2014-11-04T00:10:43","date_gmt":"2014-11-04T08:10:43","guid":{"rendered":"https:\/\/cheapsslsecurity.com\/blog\/?p=608"},"modified":"2021-01-26T09:13:18","modified_gmt":"2021-01-26T17:13:18","slug":"install-ssl-certificate-tomcat-web-server","status":"publish","type":"post","link":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/","title":{"rendered":"Install SSL Certificate on Tomcat Web Server"},"content":{"rendered":"<h2>Tomcat Web Server: SSL Certificate Installation Procedure<\/h2>\n<p style=\"text-align: justify;\">To successfully install your SSL Certificate on\u00a0<a title=\"Apache Tomcat Web Server\" href=\"https:\/\/en.wikipedia.org\/wiki\/Apache_Tomcat\"><strong>Tomcat Web Server<\/strong><\/a>, you need to configure the root (SSL) certificate, intermediate\/primary certificate, and private key within the appropriate keystore.<\/p>\n<ul>\n<li>Download Certificate Files<\/li>\n<li>Import Root Certificate<\/li>\n<li>Import Intermediate Certificate<\/li>\n<li>Install SSL Certificate<\/li>\n<\/ul>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-612\" src=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/tomcat-ssl-installation.png\" alt=\"Tomcat SSL Installation\" width=\"448\" height=\"124\" \/><\/p>\n<p style=\"text-align: justify;\">Perform the following steps when installing the SSL certificate on Tomcat Web Server.<\/p>\n<h4 style=\"text-align: justify;\"><span style=\"color: #000000;\">Install SSL Certificate into the Keystore -&gt;<\/span><\/h4>\n<h3 style=\"text-align: justify;\">Step 1: Download And Extract SSL Certificate<\/h3>\n<p style=\"text-align: justify;\">After order completion, Certificate Authority (CA) will send an email containing a <strong>*.zip<\/strong> file which includes the root, intermediate, &amp; primary certificate files. Download and extract the files on the Tomcat Web Server directory where the Keystore was added during the Certificate Signing Request (CSR) generation process.<\/p>\n<p style=\"text-align: justify;\">Note: SSL certificate will work only with the same keystore, which was created during the CSR generation process. Also, make sure to install all certificate files in the correct order on the keystore.<\/p>\n<h3 style=\"text-align: justify;\">Step 2: Import Root Certificate File<\/h3>\n<p style=\"text-align: justify;\">During the process of installing the SSL certificate to the keystore, the password required is the same one that you created during the CSR generation process. Now, to import the Root certificate file, enter the following command\/code:<\/p>\n<pre>keytool -import -trustcacerts -alias root -file RootCertFileName.crt -keystore keystore.key<\/pre>\n<p>After entering this command, if you receive a message that says <b><i>&#8220;Certificate already exists in system-wide CA Keystore under alias &lt;&#8230;&gt; Do you still want to add it to your own Keystore? [no]:&#8221;<\/i><\/b> then select <b>Yes<\/b>.<\/p>\n<p style=\"text-align: justify;\">If this process is successfully completed, it will display<del cite=\"mailto:Kyle%20Grueninger\" datetime=\"2014-11-17T09:57\"><\/del> this message: \u201c<b><i>Certificate was added to Keystore&#8221;.<\/i><\/b><\/p>\n<h3 style=\"text-align: justify;\">Step 3: Import Intermediate Certificate File<\/h3>\n<p style=\"text-align: justify;\">Add the following command\/code to import the intermediate certificate file:<\/p>\n<pre>keytool -import -trustcacerts -alias intermediate -file IntermediateCertFileName.crt -keystore keystore.key<\/pre>\n<p style=\"text-align: justify;\">If this process is successfully completed, it will display this message: <strong><i>&#8220;Certificate was added to Keystore&#8221;.<\/i><\/strong><\/p>\n<h3 style=\"text-align: justify;\">Step 4: Installing the Primary Certificate File<\/h3>\n<p style=\"text-align: justify;\">Add the following command\/code \u00a0\u00a0install the primary certificate file:<\/p>\n<pre>keytool -import -trustcacerts -alias tomcat -file PrimaryCertFileName.crt -keystore keystore.key<\/pre>\n<p>If this process is successfully completed, it will display this message: <b><i>&#8220;Certificate was added to Keystore&#8221;.<\/i><\/b><\/p>\n<p>After installing the SSL Certificate file into your keystore, the next step is the &#8216;S<b>erver Configuration&#8217;<\/b> for using the <b>Keystore file<\/b>.<\/p>\n<h4 style=\"text-align: justify;\"><span style=\"color: #000000;\"><b>SSL Connector Configuration -&gt;<\/b><\/span><\/h4>\n<p><b>Note:<\/b> Configuration of &#8216;SSL Connector&#8217; must be required for Tomcat to accept a secure connection.<\/p>\n<p style=\"text-align: justify;\">In the system\u2019s home directory, Tomcat is mainly looking for the Keystore with file name &#8216;<b>.keystore&#8217;<\/b> with default password as &#8216;changeit&#8217;. On Unix and Linux systems, the home directory will be <b><i>\/home\/user-name\/<\/i><\/b> and for Microsoft windows systems <b>C:\\Documents and Settings\\user-name\\<\/b>. Users can change the file location and password if required.<\/p>\n<p style=\"text-align: justify; padding-left: 30px;\"><strong>1.<\/strong> Copy <strong>Keystore file<\/strong> (your-domain-name.key) into the home directory<br \/>\n<strong>2.<\/strong> Now, using any text-editor open <strong>\u2026~\/conf\/server.xml<\/strong> file.<br \/>\n<strong>3.<\/strong> If necessary, uncomment the SSL connector.<br \/>\n<strong>4.<\/strong> Locate the SSL connector for which the new Keystore will be used. Make sure the Connector Port is 443.<br \/>\n<strong>5.<\/strong> During configuration of SSL connector, add the exact location of Keystore file name and also the correct <strong>KeystorePass<\/strong>.<br \/>\n<strong>6.<\/strong> If the Tomcat version is 7.0.X or 8.0.X, then replace the <strong>KeystorePass<\/strong> with <strong>Keypass<\/strong><\/p>\n<p style=\"text-align: justify;\">Once the connector configuration process is finished, it will\u00a0 look something like this:<\/p>\n<p style=\"padding-left: 60px;\"><em><strong><span style=\"color: #808080;\">&lt;Connector className=&#8221;org.apache.catalina.connector.http.HttpConnector&#8221; port=&#8221;8443&#8243; minProcessors=&#8221;5&#8243; maxProcessors=&#8221;75&#8243; enableLookups=&#8221;true&#8221; acceptCount=&#8221;10&#8243; debug=&#8221;0&#8243; scheme=&#8221;https&#8221; secure=&#8221;true&#8221;&gt;&lt;Factory className=&#8221;org.apache.catalina.net.SSLServerSocketFactory&#8221; clientAuth=&#8221;false&#8221; protocol=&#8221;TLS&#8221; keystoreFile=&#8221;\/working\/mykeystore&#8221; keystorePass=&#8221;password&#8221;\/&gt;<\/span><\/strong><\/em><\/p>\n<p style=\"text-align: justify; padding-left: 30px;\"><strong>7.<\/strong> Save the <strong>server.xml<\/strong> file and restart Tomcat server.<\/p>\n<p style=\"text-align: justify;\">With this step, the SSL certificate gets successfully installed on Tomcat Web Server.<\/p>\n<h3 style=\"text-align: justify;\"><span style=\"text-decoration: underline;\">Resources:<\/span><\/h3>\n<ul>\n<li><a href=\"http:\/\/tomcat.apache.org\/tomcat-6.0-doc\/ssl-howto.html#Configuration\">Tomcat SSL Configuration<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/ssltools\/ssl-checker.php\">SSL Installation Checker<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/ssltools\/csr-generator.php\">Generate CSR key Keystorepass<\/a><\/li>\n<li><a href=\"http:\/\/tomcat.apache.org\/findhelp.html\">Apache Tomcat Support<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-red-hat-linux-apache-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Install an SSL Certificate on Red Hat Linux Apache Server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/how-to-install-ssl-certificate-on-cisco-secure-access-control-server-acs\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Install SSL Certificate on Cisco Secure Access Control Server (ACS)<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-ubuntu-server-using-apache\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Install an SSL Certificate on Ubuntu Server using Apache<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/how-to-install-an-ssl-certificate-on-h-sphere\/\" target=\"_blank\" rel=\"noopener noreferrer\">A Step-by-Step Guide on How to Install an SSL certificate on H-Sphere<\/a><\/li>\n<\/ul>\n<h3>Before Installing the SSL<\/h3>\n<p><img decoding=\"async\" class=\"wp-image-573 size-thumbnail alignleft\" src=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/09\/ssl-lock-icon.png\" alt=\"green pad lock\" width=\"70\" height=\"93\" \/>Tomcat Server only accepts SSL Certificate from a genuine and trusted SSL Certificate Authority. Buy trusted SSL Certificate from at a cheap price with heavy discount rates.<\/p>\n<p><a class=\"comparebtn\" href=\"https:\/\/cheapsslsecurity.com\/\">Buy SSL Certificate starts at $5.45 Per Year<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tomcat Web Server: SSL Certificate Installation Procedure To successfully install your SSL Certificate on\u00a0Tomcat Web Server, you need to configure the root (SSL) certificate, intermediate\/primary certificate, and private key within the appropriate keystore. Download Certificate Files Import Root Certificate Import Intermediate Certificate Install SSL Certificate Perform the following steps when installing the SSL certificate on<\/p>\n","protected":false},"author":8,"featured_media":612,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-608","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ssl-pki"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install SSL Certificate on Tomcat Web Server<\/title>\n<meta name=\"description\" content=\"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install SSL Certificate on Tomcat Web Server\" \/>\n<meta property=\"og:description\" content=\"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Savvy Security\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheapsslsecurities\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-04T08:10:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-26T17:13:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png\" \/>\n\t<meta property=\"og:image:width\" content=\"448\" \/>\n\t<meta property=\"og:image:height\" content=\"124\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Savvy Security\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:site\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Savvy Security\" \/>\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:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/\"},\"author\":{\"name\":\"Savvy Security\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"headline\":\"Install SSL Certificate on Tomcat Web Server\",\"datePublished\":\"2014-11-04T08:10:43+00:00\",\"dateModified\":\"2021-01-26T17:13:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/\"},\"wordCount\":663,\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/Tomcat-SSL-Installation.png\",\"articleSection\":[\"SSL &amp; PKI\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/\",\"name\":\"Install SSL Certificate on Tomcat Web Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/Tomcat-SSL-Installation.png\",\"datePublished\":\"2014-11-04T08:10:43+00:00\",\"dateModified\":\"2021-01-26T17:13:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"description\":\"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/Tomcat-SSL-Installation.png\",\"contentUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/Tomcat-SSL-Installation.png\",\"width\":448,\"height\":124,\"caption\":\"Tomcat SSL Installation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-tomcat-web-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install SSL Certificate on Tomcat Web Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\",\"name\":\"Savvy Security\",\"description\":\"Practical cybersecurity advice\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\",\"name\":\"Savvy Security\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"caption\":\"Savvy Security\"},\"description\":\"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\\\/7 security teams.\",\"sameAs\":[\"blogadmin\"],\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/author\\\/blogadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install SSL Certificate on Tomcat Web Server","description":"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.","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:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/","og_locale":"en_US","og_type":"article","og_title":"Install SSL Certificate on Tomcat Web Server","og_description":"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.","og_url":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/","og_site_name":"Savvy Security","article_publisher":"https:\/\/www.facebook.com\/cheapsslsecurities","article_published_time":"2014-11-04T08:10:43+00:00","article_modified_time":"2021-01-26T17:13:18+00:00","og_image":[{"width":448,"height":124,"url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png","type":"image\/png"}],"author":"Savvy Security","twitter_card":"summary_large_image","twitter_creator":"@sslsecurity","twitter_site":"@sslsecurity","twitter_misc":{"Written by":"Savvy Security","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#article","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/"},"author":{"name":"Savvy Security","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"headline":"Install SSL Certificate on Tomcat Web Server","datePublished":"2014-11-04T08:10:43+00:00","dateModified":"2021-01-26T17:13:18+00:00","mainEntityOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/"},"wordCount":663,"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png","articleSection":["SSL &amp; PKI"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/","url":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/","name":"Install SSL Certificate on Tomcat Web Server","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#primaryimage"},"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png","datePublished":"2014-11-04T08:10:43+00:00","dateModified":"2021-01-26T17:13:18+00:00","author":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"description":"Quick and Easy steps to Install SSL Certificate on Tomcat Web Server. Import Intermediate and Root certificate quickly in your Tomcat server without any hassle.","breadcrumb":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#primaryimage","url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png","contentUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2014\/11\/Tomcat-SSL-Installation.png","width":448,"height":124,"caption":"Tomcat SSL Installation"},{"@type":"BreadcrumbList","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-tomcat-web-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheapsslsecurity.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install SSL Certificate on Tomcat Web Server"}]},{"@type":"WebSite","@id":"https:\/\/cheapsslsecurity.com\/blog\/#website","url":"https:\/\/cheapsslsecurity.com\/blog\/","name":"Savvy Security","description":"Practical cybersecurity advice","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cheapsslsecurity.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493","name":"Savvy Security","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","caption":"Savvy Security"},"description":"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\/7 security teams.","sameAs":["blogadmin"],"url":"https:\/\/cheapsslsecurity.com\/blog\/author\/blogadmin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/608","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/comments?post=608"}],"version-history":[{"count":0,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/608\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media\/612"}],"wp:attachment":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media?parent=608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/categories?post=608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/tags?post=608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}