{"id":1239,"date":"2023-01-12T07:29:32","date_gmt":"2023-01-12T07:29:32","guid":{"rendered":"https:\/\/cheapsslweb.com\/resources\/?p=1239"},"modified":"2026-01-07T10:38:49","modified_gmt":"2026-01-07T10:38:49","slug":"move-ssl-certificate-from-apache-server-to-another-apache-server","status":"publish","type":"post","link":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/","title":{"rendered":"How to Move an SSL Certificate from One Apache to Another Apache Server?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Migrating a website from one server to another and wanting to keep using the same SSL certificate or wanting to use the same SSL certificate on multiple servers for load balancing or failover purposes, be it any reason website owners often require to move an SSL certificate from one Apache server to another.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In any of these cases, moving the SSL certificate from one Apache server to another can be a useful way to ensure that the website remains secure and that users can trust the connection. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Following best practices when moving the <a href=\"https:\/\/cheapsslweb.com\/ssl-types\/single-domain-ssl\">SSL certificate<\/a> is important, such as using secure methods to transfer the certificate and key data and properly configuring the Apache server to use the certificate.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to Move SSL from One Apache to Another Apache Server<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To move an SSL certificate from one Apache server to another, you can follow these general steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Export the SSL certificate and private key from the first Apache server. This can typically be done by running a command like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>sudo openssl pkcs12 -Export -out certificate.pfx -inkey private.key -in certificate.crt<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will create a .pfx file called &#8220;<strong>certificate.pfx<\/strong>&#8221; that contains the certificate and key.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You will need to provide the paths to the certificate and key files on the first server, and you may also need to enter a password to protect the .pfx file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Copy the .pfx file to the second Apache server. You can use a secure method such as <a href=\"https:\/\/cheapsslweb.com\/blog\/https-vs-sftp\">SFTP<\/a> or SCP to transfer the file from the first server to the second server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Convert the .pfx file to separate certificate and key files on the second server. You can do this by running a command like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>sudo openssl pkcs12 -in certificate.pfx -out certificate.txt -nodes<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will create a text file called &#8220;<strong>certificate.txt<\/strong>&#8221; that contains the certificate and key data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can then open the text file in a text editor and copy the data to separate certificate and key files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Install the certificate and key on the second Apache server. You can do this by editing the Apache configuration file and specifying the locations of the certificate and key files. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You will also need to enable the SSL module and configure the VirtualHost block for the website you want to secure with SSL.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>LoadModule ssl_module modules\/mod_ssl.so\n\n&lt;VirtualHost *:443&gt;\n    ServerName www.yourdomain.com\n    DocumentRoot \/var\/www\/html\/yourwebsite\n    SSLEngine on\n    SSLCertificateFile \/path\/to\/your_domain_name.crt\n    SSLCertificateKeyFile \/path\/to\/your_private.key\n    SSLCertificateChainFile \/path\/to\/DigiCertCA.crt\n    # Optional: other SSL settings like strong ciphers and protocols can be included or linked here\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Restart the Apache server on the second server to apply the changes. You can do this by running a command like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>sudo systemctl restart apache2<\/em> <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Final Words<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Following these steps, you can move an SSL certificate from one Apache server to another. It is important to use secure methods to transfer the .pfx file and to protect the certificate and key data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Also Read<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/cheapsslweb.com\/resources\/move-an-ssl-certificate-from-apache-server-to-a-windows-server\">Move an SSL Certificate from Apache Server to a Windows Server<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cheapsslweb.com\/resources\/move-an-ssl-certificate-from-a-tomcat-java-server-to-openssl\">Move an SSL Certificate from a Tomcat\/Java Server to OpenSSL<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cheapsslweb.com\/resources\/move-or-copy-an-ssl-certificate-from-a-windows-server-to-an-apache-server\">Move or Copy an SSL from a Windows Server to Apache Server<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Migrating a website from one server to another and wanting to keep using the same SSL certificate or wanting to use the same SSL certificate on multiple servers for load balancing or failover purposes, be it any reason website owners often require to move an SSL certificate from one Apache server to another. In any<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":5352,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[85],"tags":[399,400],"class_list":["post-1239","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-installation-guides","tag-move-a-certificate-between-apache-web-servers","tag-move-ssl-one-apache-to-another-apache","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Move SSL Certificate from One Apache to Another Apache Server<\/title>\n<meta name=\"description\" content=\"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Move SSL Certificate from One Apache to Another Apache Server\" \/>\n<meta property=\"og:description\" content=\"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/\" \/>\n<meta property=\"og:site_name\" content=\"CheapSSLWeb.com Resources\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheapsslweb\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-12T07:29:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-07T10:38:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"621\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Janki Mehta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@cheapsslweb\" \/>\n<meta name=\"twitter:site\" content=\"@cheapsslweb\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/\"},\"author\":{\"name\":\"Janki Mehta\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#\\\/schema\\\/person\\\/c7d26eacacd9392c23be9d82e9af145e\"},\"headline\":\"How to Move an SSL Certificate from One Apache to Another Apache Server?\",\"datePublished\":\"2023-01-12T07:29:32+00:00\",\"dateModified\":\"2026-01-07T10:38:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/\"},\"wordCount\":477,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/move-ssl-to-another-apache-server.webp\",\"keywords\":[\"move a certificate between Apache web servers\",\"move ssl one apache to another apache\"],\"articleSection\":[\"SSL Installation Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/\",\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/\",\"name\":\"Move SSL Certificate from One Apache to Another Apache Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/move-ssl-to-another-apache-server.webp\",\"datePublished\":\"2023-01-12T07:29:32+00:00\",\"dateModified\":\"2026-01-07T10:38:49+00:00\",\"description\":\"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/move-ssl-to-another-apache-server.webp\",\"contentUrl\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/move-ssl-to-another-apache-server.webp\",\"width\":960,\"height\":621,\"caption\":\"Move SSL from One Apache to Another Apache\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/move-ssl-certificate-from-apache-server-to-another-apache-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Move an SSL Certificate from One Apache to Another Apache Server?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/\",\"name\":\"CheapSSLWeb.com\",\"description\":\"SSL Errors and Installation Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#organization\"},\"alternateName\":\"Cheap SSL Web\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#organization\",\"name\":\"CheapSSLWeb\",\"alternateName\":\"Cheap SSL Web\",\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/logo.png\",\"width\":177,\"height\":60,\"caption\":\"CheapSSLWeb\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/cheapsslweb\",\"https:\\\/\\\/x.com\\\/cheapsslweb\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/cheapsslweb\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/cheapsslweb\\\/\",\"https:\\\/\\\/www.instagram.com\\\/cheapsslweb\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/#\\\/schema\\\/person\\\/c7d26eacacd9392c23be9d82e9af145e\",\"name\":\"Janki Mehta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g\",\"caption\":\"Janki Mehta\"},\"description\":\"Janki Mehta is a Cyber-Security Enthusiast having 7+ years of experience and knowledge about Encryption, Digital Certificates and Online Security, She helps online users to stay safe and protect their online presence. Explore SSL Errors, Installation Guide and Security Tutorials for Safe Browsing and Web Security Experience.\",\"sameAs\":[\"https:\\\/\\\/cheapsslweb.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/pw-jankimehta\\\/\"],\"url\":\"https:\\\/\\\/cheapsslweb.com\\\/resources\\\/author\\\/janki-mehta\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Move SSL Certificate from One Apache to Another Apache Server","description":"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.","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:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/","og_locale":"en_US","og_type":"article","og_title":"Move SSL Certificate from One Apache to Another Apache Server","og_description":"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.","og_url":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/","og_site_name":"CheapSSLWeb.com Resources","article_publisher":"https:\/\/www.facebook.com\/cheapsslweb","article_published_time":"2023-01-12T07:29:32+00:00","article_modified_time":"2026-01-07T10:38:49+00:00","og_image":[{"width":960,"height":621,"url":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp","type":"image\/jpeg"}],"author":"Janki Mehta","twitter_card":"summary_large_image","twitter_creator":"@cheapsslweb","twitter_site":"@cheapsslweb","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#article","isPartOf":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/"},"author":{"name":"Janki Mehta","@id":"https:\/\/cheapsslweb.com\/resources\/#\/schema\/person\/c7d26eacacd9392c23be9d82e9af145e"},"headline":"How to Move an SSL Certificate from One Apache to Another Apache Server?","datePublished":"2023-01-12T07:29:32+00:00","dateModified":"2026-01-07T10:38:49+00:00","mainEntityOfPage":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/"},"wordCount":477,"commentCount":0,"publisher":{"@id":"https:\/\/cheapsslweb.com\/resources\/#organization"},"image":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp","keywords":["move a certificate between Apache web servers","move ssl one apache to another apache"],"articleSection":["SSL Installation Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/","url":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/","name":"Move SSL Certificate from One Apache to Another Apache Server","isPartOf":{"@id":"https:\/\/cheapsslweb.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#primaryimage"},"image":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp","datePublished":"2023-01-12T07:29:32+00:00","dateModified":"2026-01-07T10:38:49+00:00","description":"Quick steps to move an SSL certificate from Apache server to another Apache server using OpenSSL commands.","breadcrumb":{"@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#primaryimage","url":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp","contentUrl":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2023\/01\/move-ssl-to-another-apache-server.webp","width":960,"height":621,"caption":"Move SSL from One Apache to Another Apache"},{"@type":"BreadcrumbList","@id":"https:\/\/cheapsslweb.com\/resources\/move-ssl-certificate-from-apache-server-to-another-apache-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheapsslweb.com\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Move an SSL Certificate from One Apache to Another Apache Server?"}]},{"@type":"WebSite","@id":"https:\/\/cheapsslweb.com\/resources\/#website","url":"https:\/\/cheapsslweb.com\/resources\/","name":"CheapSSLWeb.com","description":"SSL Errors and Installation Tutorials","publisher":{"@id":"https:\/\/cheapsslweb.com\/resources\/#organization"},"alternateName":"Cheap SSL Web","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cheapsslweb.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cheapsslweb.com\/resources\/#organization","name":"CheapSSLWeb","alternateName":"Cheap SSL Web","url":"https:\/\/cheapsslweb.com\/resources\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheapsslweb.com\/resources\/#\/schema\/logo\/image\/","url":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2022\/03\/logo.png","contentUrl":"https:\/\/cheapsslweb.com\/resources\/wp-content\/uploads\/2022\/03\/logo.png","width":177,"height":60,"caption":"CheapSSLWeb"},"image":{"@id":"https:\/\/cheapsslweb.com\/resources\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/cheapsslweb","https:\/\/x.com\/cheapsslweb","https:\/\/www.linkedin.com\/company\/cheapsslweb\/","https:\/\/www.pinterest.com\/cheapsslweb\/","https:\/\/www.instagram.com\/cheapsslweb\/"]},{"@type":"Person","@id":"https:\/\/cheapsslweb.com\/resources\/#\/schema\/person\/c7d26eacacd9392c23be9d82e9af145e","name":"Janki Mehta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=https%3A%2F%2Fcheapsslweb.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F02%2Fjanki-mehta-jpg.webp&r=g","caption":"Janki Mehta"},"description":"Janki Mehta is a Cyber-Security Enthusiast having 7+ years of experience and knowledge about Encryption, Digital Certificates and Online Security, She helps online users to stay safe and protect their online presence. Explore SSL Errors, Installation Guide and Security Tutorials for Safe Browsing and Web Security Experience.","sameAs":["https:\/\/cheapsslweb.com\/","https:\/\/www.linkedin.com\/in\/pw-jankimehta\/"],"url":"https:\/\/cheapsslweb.com\/resources\/author\/janki-mehta\/"}]}},"_links":{"self":[{"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/posts\/1239","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/comments?post=1239"}],"version-history":[{"count":8,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/posts\/1239\/revisions"}],"predecessor-version":[{"id":5264,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/posts\/1239\/revisions\/5264"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/media\/5352"}],"wp:attachment":[{"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/media?parent=1239"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/categories?post=1239"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapsslweb.com\/resources\/wp-json\/wp\/v2\/tags?post=1239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}