-
Notifications
You must be signed in to change notification settings - Fork 476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: unable to verify the first certificate #331
Comments
Found a solution with the help of Compose helpdesk using this. const url = require('url');
const uri = 'amqp://localhost' // or amqps://.........
const parsedURI = url.parse(uri);
amqp.connect(uri, { servername: parsedURI.hostname }) Works with You can check my code for the changes |
@igorissen love you |
@diogosantosmendes Did the solution work for you? It's been reported as not working (any more), elsewhere (#371). |
I am getting following erroe
My method:
|
3 tasks
This was referenced Apr 19, 2019
saary
added a commit
to rewireltd1/n8n
that referenced
this issue
Mar 6, 2021
This fix allows to better mitigate ERROR: unable to verify the first certificate. For more information see amqp-node/amqplib#331
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Trying to connect to a RabbitMQ server on a service called Compose.com and I keep getting this error message:
This an example of the connection string that Compose give me
You can see that on each examples you use
amqp://
. Is the module handle the secure version of the protocolamqps://
?And you can find here the module created to handle connection and a few methods.
Any idea how to fix that ?
Thank you.
The text was updated successfully, but these errors were encountered: