-
Notifications
You must be signed in to change notification settings - Fork 679
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
connection refused #31
Comments
Looks like you're trying to establish an HHTPS connection. |
yes.I am trying to connect over https. Below is the command line: ./firas.py "server ip address" 9200 "path to client certificate key" "path to client certificate file" "path to root CA file" below is my code (firas.py):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am following this recipe: https://github.com/ActiveState/code/blob/3b27230f418b714bc9a0f897cb8ea189c3515e99/recipes/Python/577548_HTTPS_httplib_Client_ConnectiCertificate/recipe-577548.py
but I am getting the following error:
Traceback (most recent call last):
File "./firas.py", line 45, in
conn.request('GET', '/_searchguard/authinfo')
File "/usr/lib64/python2.7/httplib.py", line 1017, in request
self._send_request(method, url, body, headers)
File "/usr/lib64/python2.7/httplib.py", line 1051, in _send_request
self.endheaders(body)
File "/usr/lib64/python2.7/httplib.py", line 1013, in endheaders
self._send_output(message_body)
File "/usr/lib64/python2.7/httplib.py", line 864, in _send_output
self.send(msg)
File "/usr/lib64/python2.7/httplib.py", line 826, in send
self.connect()
File "./firas.py", line 26, in connect
sock = socket.create_connection((self.host, self.port), self.timeout)
File "/usr/lib64/python2.7/socket.py", line 571, in create_connection
raise err
socket.error: [Errno 111] Connection refused
Any help is really appreciated. I am not seeing anything in the logs that can help me in debugging this issue.
Thanks,
Firas Khasawneh
The text was updated successfully, but these errors were encountered: