SSL error - state=SSLv2/v3 read server hello A: unknown protocol (OpenSSL::SSL::SSLError) #958
-
Hello, I am getting ssl error while using the following config - rails config/application.rb
otlp-exporter.yaml
And I am getting the following error when i access the application
Anyone faced this error or give any pointers to the fix?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This error looks to me like you're trying to use the default secure connections (https) from the Rails app to send traces to the OTEL exporter. If you're running this in an environment where you're not managing SSL certificates e.g. development, you'll need to use insecure connections (http). Take a look at the docs for an example of how to do that: https://opentelemetry.io/docs/ruby/getting_started/#exporting-traces |
Beta Was this translation helpful? Give feedback.
This error looks to me like you're trying to use the default secure connections (https) from the Rails app to send traces to the OTEL exporter.
If you're running this in an environment where you're not managing SSL certificates e.g. development, you'll need to use insecure connections (http).
Take a look at the docs for an example of how to do that:
https://opentelemetry.io/docs/ruby/getting_started/#exporting-traces