You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run the Python script and get the error ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get issuer certificate (_ssl.c:1000)
To resolve the error I have to merge the root CA into fullchain.pem and update Python script to use the merged file root_fullchain.pem
@robertsLando its included const mqtt_server = tls.createServer(tls_options, aedes.handle) . It works fine on localhost with a self singed certificate without Nginx
Hi all,
I want to implement MQTT over TLS using generated Let's Encrypt of domain mqtt.llos.unimetaverse.net.
Note:
fullchain.pem
is generated by Let's Encrypt only contains intermediate cert and certificate only, not including root-ca certificate.Run the Python script and get the error
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get issuer certificate (_ssl.c:1000)
To resolve the error I have to merge the root CA into fullchain.pem and update Python script to use the merged file
root_fullchain.pem
Run the Python script again without error but the
console.log(
SECURE_CONNECTION)
not showing.Any one can help on this
Thank you
The text was updated successfully, but these errors were encountered: