{"id":1614,"date":"2023-10-17T05:48:13","date_gmt":"2023-10-17T05:48:13","guid":{"rendered":"https:\/\/certera.com\/kb\/?p=1614"},"modified":"2024-10-08T06:11:21","modified_gmt":"2024-10-08T06:11:21","slug":"how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate","status":"publish","type":"post","link":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/","title":{"rendered":"How to Fix &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">While working with or using Git Bash, at some point, you might have encountered an &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate.&#8221; It can be frustrating as it doesn&#8217;t go away no matter how often you verify your URL or modify your cURL request.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Find here a few methods to attempt to resolve the Unable to get Local Issuer Certificate Issue.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the SSL Certificate Problem: Unable to get Local Issuer Certificate Error?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is common issue that developers often encounter while using Git Bash, a Windows command line tool to push, pull, or clone a Git repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What are the Causes?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The &#8220;Unable to Get Local Issuer Certificate&#8221; error stems from a misconfigured SSL certificate on your local machine. This misconfiguration prevents a successful HTTPS handshake from taking place.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The error is often linked to self-signed or corporate certificates, particularly with Git. (Self-signed certificates are mainly used in testing or development environments and are not verified by trusted Certificate Authorities. Git may throw an error when encountering such certificates. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Corporate organizations often have their own Certificate Authorities, which may not be trusted by external services like Git, leading to the same error.) Visual Studio Code users may encounter it due to a misconfigured certificate path on their machine.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/certera.com\/cheap-ssl-certificates\"><img decoding=\"async\" width=\"960\" height=\"150\" sizes=\"(max-width: 960px) 100vw, 960px\" src=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2024\/05\/cheap-ssl-certs-cta-jpg.webp\" alt=\"Cheap SSL Certificates\" class=\"wp-image-2027\" srcset=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2024\/05\/cheap-ssl-certs-cta-jpg.webp 960w, https:\/\/certera.com\/kb\/wp-content\/uploads\/2024\/05\/cheap-ssl-certs-cta-300x47.webp 300w, https:\/\/certera.com\/kb\/wp-content\/uploads\/2024\/05\/cheap-ssl-certs-cta-768x120.webp 768w\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">How to Fix SSL\/TLS Error &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To fix the SSL\/TLS error \u2013 &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate,&#8221; <strong>you can perform any one of the methods mentioned below<\/strong>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Alter the php.ini File<\/li>\n\n\n\n<li>Add SSL Certificate to Trusted Certificate Store<\/li>\n\n\n\n<li>Reinstall Git &amp; Select SSL Transport Backend Option<\/li>\n\n\n\n<li>Grant Repository Access to SSL Certificates or Reassign Path in VS Code<\/li>\n\n\n\n<li>Disable SSL certificate<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Method 1: Alter the php.ini File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Despite not using Git Bash, if you are facing the Unable to Get Local Issuer Certificate error, use this method to resolve it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Follow the steps mentioned below to alter the php.ini file:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enter your <strong>login credentials<\/strong> to access your <strong>web control panel <\/strong>(cPanel).<\/li>\n\n\n\n<li>Navigate to<strong> File Manager<\/strong> &gt; <strong>PHP Software<\/strong>.<\/li>\n\n\n\n<li>Open the <strong>php.ini<\/strong> file.<\/li>\n\n\n\n<li>Click on <strong>http:\/\/curl.haxx.se\/ca\/cacert.pem<\/strong>.<\/li>\n\n\n\n<li>Download the <strong>cacert.pem<\/strong> file.<\/li>\n\n\n\n<li>Copy the <strong>cacert.pem<\/strong> file to <strong>openssl\/zend <\/strong>(like &#8211; \u2018\/usr\/local\/openssl-0.9.8\/certs\/cacert.pem\u2019.)<\/li>\n\n\n\n<li>Navigate to<strong> php.ini<\/strong>.<\/li>\n\n\n\n<li>Add &#8220;<strong>cainfo = \u2018\/usr\/local\/openssl-0.9.8\/certs\/cacert.pem&#8221;<\/strong> to <strong>CURL<\/strong>.<\/li>\n\n\n\n<li>Restart <strong>PHP <\/strong>and confirm if <strong>CURL <\/strong>can read the HTTPS URL or not.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>Note: Enter the code mentioned below to resolve the issue without modifying the php.ini file.<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">$ch = curl_init();<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">$certificate_location = \u2018\/usr\/local\/openssl-0.9.8\/certs\/cacert.pem\u2019;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $certificate_location);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $certificate_location);<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Method 2: Add SSL Certificate to Trusted Certificate Store<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you are a Git Bash user facing the Unable to Get Local Issuer Certificate error, use this method to resolve it. <strong>Follow the steps mentioned below to add an SSL cert to the Trusted Certificate Store:<\/strong><\/p>\n\n\n\n<ol start=\"1\" style=\"list-style-type:1\" class=\"wp-block-list\">\n<li>Copy the <strong>Git SSL certificate<\/strong>.<\/li>\n\n\n\n<li>Locate the<strong> trusted certificate store<\/strong> (C:\\Program Files\\Git\\mingw64\\ssl\\certs)<\/li>\n\n\n\n<li>Open <strong>ca-bundle.crt<\/strong> file.<\/li>\n\n\n\n<li>Paste the <strong>Git SSL certificate<\/strong> at the <strong>end <\/strong>of the <strong>.crt<\/strong> file.<\/li>\n\n\n\n<li><strong>Save <\/strong>the file.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Method 3: Reinstall Git &amp; Select SSL Transport Backend Option<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If facing trouble in running Git commands like &#8211; git pull, push, or clone, reinstall Git and select the SSL Transport Backend option. Follow the steps mentioned below to accomplish the same:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Uninstall <\/strong>Git by using the <strong>Control Panel<\/strong>.<\/li>\n\n\n\n<li>Once the <strong>uninstallation process is complete<\/strong>, perform these actions:<ul><li>Open a <strong>web browser<\/strong> (Google Chrome).In the <strong>URL <\/strong>bar, type <strong>https:\/\/git-scm.com\/download\/win<\/strong> and press <strong>Enter<\/strong>.<\/li><\/ul>\n<ul class=\"wp-block-list\">\n<li>Download the appropriate <strong>Git version<\/strong>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>During the installation process, select the <strong>SSL Transport Backend <\/strong>option.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Method 4: Grant Repository Access to SSL Certificates or Reassign Path in VS Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If the Unable to get Local Issuer Certificate error occurs inside VSC, perform the below-mentioned steps to resolve it:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reconfigure Git with the &#8211;global flag on your SSL certificate configuration by running the <strong>git config &#8211;global http.sslBackend schannel <\/strong>command in the terminal.<\/li>\n\n\n\n<li>If the error is due to accessibility, set the accessibility at the system level by opening the terminal with administrative privileges and running the <strong>git config &#8211;system http.sslBackend schannel<\/strong> command.<\/li>\n\n\n\n<li>If the error is due to location misconfiguration, use the <strong>git config &#8211;global http.sslcainfo &#8220;Path&#8221;<\/strong> command to reassign the path.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Method 5: Disable SSL Certificate<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Disabling SSL verification is not recommended for security. Once the SSL cert is disabled, malicious actors can attack the system and access data, leading to breaches and ransomware attacks.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Follow the steps mentioned below to disable the verification of your SSL certificate:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To disable SSL certificate validation locally in Git, use the <strong>$ git -c http.sslVerify=false clone [URL]<\/strong> command.<\/li>\n\n\n\n<li>To disable verification of your SSL cert at a global level, use the <strong>$ git config &#8211;global http.sslVerify false<\/strong> command.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note:<\/strong> To re-enable SSL certificate verification, use the <strong>$ git config &#8211;global http.sslVerify true<\/strong> command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter the &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate&#8221; error, you can try the following methods one by one until the issue gets resolved\/fixed:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Modify the php.ini file and set the SSL certificate path.<\/li>\n\n\n\n<li>Add the SSL certificate to Git Bash&#8217;s trusted store.<\/li>\n\n\n\n<li>Reinstall Git and select the SSL Transport Backend during installation.<\/li>\n\n\n\n<li>Adjust Git settings in Visual Studio Code or reconfigure SSL paths.<\/li>\n\n\n\n<li>Temporarily disable SSL certificate verification (not recommended) but remember to re-enable it for security.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>While working with or using Git Bash, at some point, you might have encountered an &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate.&#8221; It can be frustrating as it doesn&#8217;t go away no matter how often you verify your URL or modify your cURL request. Find here a few methods to attempt to resolve<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":1631,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[232,231,235,234,233],"class_list":["post-1614","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-errors","tag-error-60-ssl-certificate-problem-2","tag-error-60-ssl-certificate-problem","tag-error-code-60","tag-fix-unable-to-get-local-issuer-certificate-error","tag-unable-to-get-local-issuer-certificate","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fix SSL Certificate Problem: Unable to get Local Issuer Certificate<\/title>\n<meta name=\"description\" content=\"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.\" \/>\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-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix SSL Certificate Problem: Unable to get Local Issuer Certificate\" \/>\n<meta property=\"og:description\" content=\"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/\" \/>\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-10-17T05:48:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-08T06:11:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-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\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-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=\"5 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-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/\"},\"author\":{\"name\":\"certerakbdbuser\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\"},\"headline\":\"How to Fix &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;\",\"datePublished\":\"2023-10-17T05:48:13+00:00\",\"dateModified\":\"2024-10-08T06:11:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/\"},\"wordCount\":928,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp\",\"keywords\":[\"error 60 ssl certificate problem\",\"error 60: SSL certificate problem\",\"error code 60\",\"Fix Unable to get Local Issuer Certificate Error\",\"unable to get local issuer certificate\"],\"articleSection\":[\"Fix SSL Errors\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/\",\"name\":\"Fix SSL Certificate Problem: Unable to get Local Issuer Certificate\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp\",\"datePublished\":\"2023-10-17T05:48:13+00:00\",\"dateModified\":\"2024-10-08T06:11:21+00:00\",\"description\":\"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp\",\"width\":960,\"height\":620,\"caption\":\"SSL Problem Unable to Get Local Issuer Certificate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certera.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;\"}]},{\"@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":"Fix SSL Certificate Problem: Unable to get Local Issuer Certificate","description":"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.","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-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/","og_locale":"en_US","og_type":"article","og_title":"Fix SSL Certificate Problem: Unable to get Local Issuer Certificate","og_description":"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.","og_url":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/","og_site_name":"Knowledge Base - Certera.com","article_publisher":"https:\/\/www.facebook.com\/certeraLLC\/","article_published_time":"2023-10-17T05:48:13+00:00","article_modified_time":"2024-10-08T06:11:21+00:00","og_image":[{"width":960,"height":620,"url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","type":"image\/jpeg"}],"author":"certerakbdbuser","twitter_card":"summary_large_image","twitter_image":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","twitter_creator":"@certera_llc","twitter_site":"@certera_llc","twitter_misc":{"Written by":"certerakbdbuser","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#article","isPartOf":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/"},"author":{"name":"certerakbdbuser","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014"},"headline":"How to Fix &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;","datePublished":"2023-10-17T05:48:13+00:00","dateModified":"2024-10-08T06:11:21+00:00","mainEntityOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/"},"wordCount":928,"commentCount":0,"publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","keywords":["error 60 ssl certificate problem","error 60: SSL certificate problem","error code 60","Fix Unable to get Local Issuer Certificate Error","unable to get local issuer certificate"],"articleSection":["Fix SSL Errors"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/","url":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/","name":"Fix SSL Certificate Problem: Unable to get Local Issuer Certificate","isPartOf":{"@id":"https:\/\/certera.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#primaryimage"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","datePublished":"2023-10-17T05:48:13+00:00","dateModified":"2024-10-08T06:11:21+00:00","description":"Follow the Step-by-Step Instructions to Resolve the SSL Certificate Problem: Unable to get Local Issuer Certificate Issue using different methods.","breadcrumb":{"@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#primaryimage","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/10\/fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate-jpg.webp","width":960,"height":620,"caption":"SSL Problem Unable to Get Local Issuer Certificate"},{"@type":"BreadcrumbList","@id":"https:\/\/certera.com\/kb\/how-to-fix-ssl-certificate-problem-unable-to-get-local-issuer-certificate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certera.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How to Fix &#8220;SSL Certificate Problem: Unable to get Local Issuer Certificate?&#8221;"}]},{"@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\/1614","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=1614"}],"version-history":[{"count":5,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/1614\/revisions"}],"predecessor-version":[{"id":2358,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/1614\/revisions\/2358"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media\/1631"}],"wp:attachment":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media?parent=1614"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/categories?post=1614"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/tags?post=1614"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}