{"id":85,"date":"2023-02-16T06:56:15","date_gmt":"2023-02-16T06:56:15","guid":{"rendered":"https:\/\/certerassl.com\/kb\/?p=85"},"modified":"2024-10-16T10:33:09","modified_gmt":"2024-10-16T10:33:09","slug":"how-to-install-ssl-certificate-on-centos","status":"publish","type":"post","link":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/","title":{"rendered":"How To Install SSL Certificate On CentOS?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Read this installation guide till the end to learn every step and command needed to install an SSL certificate on CentOS. From the prerequisites for the installation procedure to testing the installation, learn everything here.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites For Installing an SSL Certificate on CentOS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Firstly, you need to get access to a CentOS server. Not just that, get access with a non-root user that comes with sudo privileges. Not done with this configuration yet. No problem, as you can do it within an hour. Another thing you need to have is your Apache installed. To install your Apache web server with CentOS, check this guide we prepared separately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps for Generating a CSR<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Generating a CSR (Certificate Signing Request) is much like a necessity as you need to send it to the Certificate Authority (CA) when applying for an SSL certificate. Not only does a CSR comprise all updated details about your organization or website, but it also consists of the private key. Use our free <a href=\"https:\/\/certera.com\/ssl-tools\/csr-generator\">CSR Generator tool<\/a> to create the CSR and Private Key.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Read our <a href=\"https:\/\/certera.com\/kb\/how-to-generate-csr-on-centos\/\" target=\"_blank\" rel=\"noreferrer noopener\">CentOS CSR Generation guide<\/a> to generate it using OpenSSL Command.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps For SSL Certificate Installation on CentOS 8<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install mod_ssl On Your System<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Run this command to check if it\u2019s installed or not.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rpm -qa | grep mod_ssl<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Not installed? Use this command to install mod_ssl.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dnf install mod_ssl<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create SSL Certificate Chain<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The chain must comprise the private key and the server, intermediate, and root certificates. To do so, run this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat pub-key.pem ca-chain.pem &gt; full-chain.pem<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Go to your Apache server and keep the PEM file along with the SSL chain here:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/pki\/tls\/certs<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Go to this folder to keep the private key:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/pki\/tls\/private\/ <\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>If you want your private key to be inaccessible to others, secure it using this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod -R 600 \/etc\/pki\/tls\/private\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Virtual Host Block Configuration<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use the following code block in your domain\u2019s configuration file that comes with a .conf extension.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DocumentRoot \/var\/www\/abc.com\nServerName abc.com\nServerAlias abc.com<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You\u2019ll have to use your domain name and replace it with \u2018abc.com\u2019 here. <strong>However, you may lack a configuration file. If so, create it using this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/etc\/httpd\/conf.d\/domainname.conf<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Once done, place the file in the following:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/httpd\/conf.d\/ directory<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>In your .conf file, add HTTPs redirects using this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ServerName abc.com\nServerAlias www.abc.com\nRedirect \"\/\" \"https:\/\/abc.com\/\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Finally, close the file and save all the changes before that.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Restart &amp; Done!<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>To restart the Apache server, run this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart httpd<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If it restarts successfully, the installation is complete.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SSL Installation for CentOS 7 &amp; 6<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Downloading Certificates<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Received the intermediate and primary certificates from your SSL provider? Now, download them all.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Copying the SSL Files<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When copying the SSL files to your Apache server, include the .key file you acquired while generating the CSR code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Go to The Apache Configuration &amp; Find and Edit The ssl.conf or httpd.conf File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To do so, run the following nano and cp commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># cp \/etc\/httpd\/conf.d\/ssl.conf \/etc\/httpd\/conf.d\/ssl.conf.BAK\n# nano \/etc\/httpd\/conf.d\/ssl.conf\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You may find that single or many files are commented out. If that happens \u2013 depending on your Apache version \u2013 delete the # character from the starting line. Then, enter the absolute path.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This block of code below illustrates the absolute file path of your certificates.<strong> However, before you copy-paste the thing, replace the files with the correct names.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SSLCertificateFile \/etc\/httpd\/conf\/ssl.crt\/leaf_certificate.crt SSLCertificateKeyFile \/etc\/httpd\/conf\/ssl.key\/ABC.key\nSSLCACertificatePath \/etc\/httpd\/conf\/ssl.chain\/intermediate_chain.crt\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Remember that you need to change the certificate key file\u2019s permission. <strong>To do so, use this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># chmod 400 \/etc\/httpd\/conf\/ssl.key\/abc.com.key<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Restart the Server!<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Now that you\u2019re done restarting the Apache server Make sure you save all the configurations before restarting the server. Once done, the installation is complete.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Read this installation guide till the end to learn every step and command needed to install an SSL certificate on CentOS. From the prerequisites for the installation procedure to testing the installation, learn everything here. Prerequisites For Installing an SSL Certificate on CentOS Firstly, you need to get access to a CentOS server. Not just<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":1110,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[20,18,19],"class_list":["post-85","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-installation","tag-centos","tag-ssl","tag-ssl-installation","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SSL Certificate on CentOS 8, 7 and 6<\/title>\n<meta name=\"description\" content=\"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install SSL Certificate on CentOS 8, 7 and 6\" \/>\n<meta property=\"og:description\" content=\"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Certera.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/certeraLLC\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-16T06:56:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-16T10:33:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"certerakbdbuser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:site\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"certerakbdbuser\" \/>\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:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/\"},\"author\":{\"name\":\"certerakbdbuser\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\"},\"headline\":\"How To Install SSL Certificate On CentOS?\",\"datePublished\":\"2023-02-16T06:56:15+00:00\",\"dateModified\":\"2024-10-16T10:33:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/\"},\"wordCount\":573,\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-centos-1-jpg.webp\",\"keywords\":[\"CentOS\",\"SSL\",\"SSL Installation\"],\"articleSection\":[\"SSL Installation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/\",\"name\":\"How to Install SSL Certificate on CentOS 8, 7 and 6\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-centos-1-jpg.webp\",\"datePublished\":\"2023-02-16T06:56:15+00:00\",\"dateModified\":\"2024-10-16T10:33:09+00:00\",\"description\":\"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-centos-1-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-centos-1-jpg.webp\",\"width\":960,\"height\":620,\"caption\":\"Install SSL On CentOS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-centos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certera.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install SSL Certificate On CentOS?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"name\":\"Knowledge Base - Certera.com\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"alternateName\":\"Certera Knowledgebase\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/certera.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\",\"name\":\"Certera\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"caption\":\"Certera\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/certeraLLC\\\/\",\"https:\\\/\\\/x.com\\\/certera_llc\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/certera-llc\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\",\"name\":\"certerakbdbuser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"caption\":\"certerakbdbuser\"},\"sameAs\":[\"https:\\\/\\\/certerakb.ssltoolsonline.com\"],\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/author\\\/certerakbdbuser\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install SSL Certificate on CentOS 8, 7 and 6","description":"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.","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:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SSL Certificate on CentOS 8, 7 and 6","og_description":"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.","og_url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/","og_site_name":"Knowledge Base - Certera.com","article_publisher":"https:\/\/www.facebook.com\/certeraLLC\/","article_published_time":"2023-02-16T06:56:15+00:00","article_modified_time":"2024-10-16T10:33:09+00:00","og_image":[{"width":960,"height":620,"url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","type":"image\/jpeg"}],"author":"certerakbdbuser","twitter_card":"summary_large_image","twitter_image":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","twitter_creator":"@certera_llc","twitter_site":"@certera_llc","twitter_misc":{"Written by":"certerakbdbuser","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#article","isPartOf":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/"},"author":{"name":"certerakbdbuser","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014"},"headline":"How To Install SSL Certificate On CentOS?","datePublished":"2023-02-16T06:56:15+00:00","dateModified":"2024-10-16T10:33:09+00:00","mainEntityOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/"},"wordCount":573,"publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","keywords":["CentOS","SSL","SSL Installation"],"articleSection":["SSL Installation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/","url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/","name":"How to Install SSL Certificate on CentOS 8, 7 and 6","isPartOf":{"@id":"https:\/\/certera.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#primaryimage"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","datePublished":"2023-02-16T06:56:15+00:00","dateModified":"2024-10-16T10:33:09+00:00","description":"Check our step-by-step process to install SSL Certificate on CentOS version 8, 7 and 6, get your SSL installed in minutes.","breadcrumb":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#primaryimage","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-centos-1-jpg.webp","width":960,"height":620,"caption":"Install SSL On CentOS"},{"@type":"BreadcrumbList","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-centos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certera.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How To Install SSL Certificate On CentOS?"}]},{"@type":"WebSite","@id":"https:\/\/certera.com\/kb\/#website","url":"https:\/\/certera.com\/kb\/","name":"Knowledge Base - Certera.com","description":"","publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"alternateName":"Certera Knowledgebase","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/certera.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/certera.com\/kb\/#organization","name":"Certera","url":"https:\/\/certera.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","caption":"Certera"},"image":{"@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/certeraLLC\/","https:\/\/x.com\/certera_llc","https:\/\/www.linkedin.com\/company\/certera-llc\/"]},{"@type":"Person","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014","name":"certerakbdbuser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","caption":"certerakbdbuser"},"sameAs":["https:\/\/certerakb.ssltoolsonline.com"],"url":"https:\/\/certera.com\/kb\/author\/certerakbdbuser\/"}]}},"_links":{"self":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/85","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/comments?post=85"}],"version-history":[{"count":17,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/85\/revisions"}],"predecessor-version":[{"id":2645,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/85\/revisions\/2645"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media\/1110"}],"wp:attachment":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media?parent=85"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/categories?post=85"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/tags?post=85"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}