Unable to reach Sentry log server: EOF occurred in violation of protocol

1.1k Views Asked by At

I'm having trouble with setting up Sentry server in HTTPS mode. Every now and then, reasonably often while seemingly random, this error message gets written by Raven (Sentry client) into log files:

Unable to reach Sentry log server: <urlopen error [Errno 8] _ssl.c:504: EOF occurred in violation of protocol> (url: https://$(valid_server)/)

Web UI works fine. Vast majority of the messages from Raven are received fine and Sentry processes them into usable output. However, due to these errors, something gets lost from time to time.

I have tried to figure this one out, but dead ends seem to follow another. Basically it seems a lot like this:

Python Requests requests.exceptions.SSLError: [Errno 8] _ssl.c:504: EOF occurred in violation of protocol

But when testing my Sentry server with similar s_client query using TLS 1.2, it leads to a valid session unlike with the example there.

It's also not about this, since SNI isn't used:

python-requests 2.0.0 - [Errno 8] _ssl.c:504: EOF occurred in violation of protocol

I'm not able to reproduce the error coherently. Raven's tests are passed and nothing is acutely wrong, until an error pops up in the log.

My set up is: Raven 4.2.1 in Python 2.7.5, Nginx 1.6.0 as reverse proxy handling HTTPS, and finally Sentry 6.4.4 with default Gunicorn 0.17.4. Nginx configs are pretty much similar to official documentation (http://sentry.readthedocs.org/en/latest/quickstart/nginx.html) with a few alterations due to HTTPS.

1

There are 1 best solutions below

2
On

I ran into the same issue and got it fixed by installing the following dependencies:

On Ubuntu:

sudo aptitude install libffi-dev

And then via pip:

pip install pyopenssl ndg-httpsclient pyasn1

The problem seems to be that Python 2.X doesn't support SNI (which is needed for TLS) out of the box as explained here.