Custom Query (894 matches)
Results (34 - 36 of 894)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#970 | laszlo | Jim Rowan <[email protected]…> | fixed | ssl traceback; bcfg2-server process wedged |
Description |
My bcfg2-server process has hung again. strace says it's stuck in a read() call. kill -TERM does not kill it. The server is running on ubuntu lucid, both server and clients are Version: 1.1.1-1~lucid1. The following was found on the controlling terminal where bcfg2-server was running. File "/usr/lib/python2.6/ssl.py", line 94, in <lambda> self.send = lambda data, flags=0: SSLSocket.send(self, data, flags) File "/usr/lib/python2.6/ssl.py", line 174, in send v = self._sslobj.write(data) SSLError: The write operation timed out ---------------------------------------- Error sending response (<class 'ssl.SSLError'>): The write operation timed out ---------------------------------------- Exception happened during processing of request from ('10.222.149.214', 42468) Traceback (most recent call last): File "/usr/lib/python2.6/SocketServer.py", line 558, in process_request_thread self.finish_request(request, client_address) File "/usr/lib/python2.6/SocketServer.py", line 320, in finish_request self.RequestHandlerClass(request, client_address, self) File "/usr/lib/python2.6/SocketServer.py", line 615, in __init__ self.handle() File "/usr/lib/python2.6/BaseHTTPServer.py", line 329, in handle self.handle_one_request() File "/usr/lib/python2.6/BaseHTTPServer.py", line 323, in handle_one_request method() File "/usr/lib/pymodules/python2.6/Bcfg2/SSLServer.py", line 249, in do_POST self.wfile.write(response) File "/usr/lib/python2.6/socket.py", line 300, in write self.flush() File "/usr/lib/python2.6/socket.py", line 286, in flush self._sock.sendall(buffer) File "/usr/lib/python2.6/ssl.py", line 203, in sendall v = self.send(data[count:]) File "/usr/lib/python2.6/ssl.py", line 94, in <lambda> self.send = lambda data, flags=0: SSLSocket.send(self, data, flags) File "/usr/lib/python2.6/ssl.py", line 174, in send v = self._sslobj.write(data) SSLError: The write operation timed out ---------------------------------------- |
|||
#682 | desai | hunter | fixed | ssl error reporting from the client needs clearer message |
Description |
If the client has requested SSL connection via bcfg2.conf, but doesn't actually have the bcfg2.key file, the error message result is cryptic at best. |
|||
#975 | desai | Arto Jantunen <[email protected]…> | fixed | should handle https:// missing from `bcfg2 -S` better |
Description |
This was originally filed in the Debian BTS as Bug#608622 (see http://bugs.debian.org/608622 ), the original report follows: I feel this IOError should be caught, ideally suggesting the use of https://. epicfail:/etc# bcfg2 -q -v -n -S kgoetz.selfip.net:6789 Traceback (most recent call last):
IOError: unsupported XML-RPC protocol This reaches the server: epicfail:/etc# bcfg2 -q -v -n -S https://kgoetz.selfip.net:6789 |