SSL Connection Error: Hostname/IP doesn't match certificate's altnames
See original GitHub issueI’m using the Heroku kafka addon. The hosts are just ec2 hosts (eg. ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com
), but the certs CN is a random alpha string. Using "rejectUnauthorized": false
works but then it does not verify the cert is signed by the provided CA. Is there any way to ignore the hostname match but keep all the rest of the verification?
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Hostname/IP does not match certificate's altnames: POSTMAN
my-app.app) is listed as one of alternate domains listed in the SSL certificate that the amazon generated dns name uses.
Read more >Hostname/IP does not match certificate's altnames · Issue #168
I haven't seen this error before, but it recently became required to use TLS 1.2, so I'm guessing it's related to that. If...
Read more >Hostname/IP does not match certificate's altnames: Host
I am trying to upload files to linode object storage using nodejs & aws-sdk but getting following error: ``` NetworkingError [ERR_TLS_CERT_ALTNAME_INVALID]: ...
Read more >SSL Error: Hostname/IP does not match certificate's altnames
It seems like it's an SSL certificate error. Is there any way to reset the Let's Encrypt certificate?
Read more >Solved: Getting the Error: Hostname/IP doesn't match certi...
The "Error:Hostname/IP doesn't match certificate's altnames" ccould ... Without the servername, the openssl failed with handshake failure.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Adding the checkServerIdentity option. Example:
@mbarany Thanks. That’s what I ended up doing too.