-
Notifications
You must be signed in to change notification settings - Fork 138
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
SSL failure(error:00000005:lib(0):func(0):DH lib) if client/worker closes socket connection #28
Comments
I wonder if "DH lib" part of that error message might be a red herring. Check out the following links: https://groups.google.com/d/msg/mailing.openssl.users/CcgtnRGpsZ0/ekdRCZFzybgJ The second link suggests this could be the result of calling SSL_read() with a buffer size of 0? Alternatively, here are some OpenSSL links about DH which may be helpful: http://stackoverflow.com/questions/23479376/openssl-ssl-accept-error-5 And here's some sample SSL server code which implements DH key exchange: |
I replaced misleading title of the issue because - in my case - the message |
FWIW, I tried setting the SSL cipher list in my clients and workers to "DEFAULT:!DH", and I still get this error. |
Trying to log into SIPhone Biz for work, |
This repo doesn't have anything to do with "SIPhone Biz", but it's basically an error message from the OpenSSL library used by the software. |
As mentioned in groups gearmand running with ssl support complains permanently about failed DH key exchange.
SSL_CTX_set_cipher_list should be implemented in gearmand in proper way to solve the issue
The text was updated successfully, but these errors were encountered: