Solved: insights-client: ConnectionError: (‘Connection aborted.’, error(110, ‘Connection timed out’)).
Today we will see one of the bug on Linux system where the insights-client connection timeout occurs.
I. Error Message
Dec 8 02:29:15 ngelinux001 insights-client: Fatal error Dec 8 02:29:15 ngelinux001 insights-client: raise ConnectionError(err, request=request) Dec 8 02:29:15 ngelinux001 insights-client: ConnectionError: ('Connection aborted.', error(110, 'Connection timed out'))
II. Solution
To solve this error message, we need to update our Python version from 2.7 to python 3.5 and above
Below messages appear as there is a bug with insights-client process where it drops some connections when simultaneous connections are initiated.
Dec 8 02:29:15 ngelinux001 insights-client: Fatal error Dec 8 02:29:15 ngelinux001 insights-client: raise ConnectionError(err, request=request) Dec 8 02:29:15 ngelinux001 insights-client: ConnectionError: ('Connection aborted.', error(110, 'Connection timed out')) Dec 9 01:11:24 ngelinux001 insights-client: Fatal error Dec 9 01:11:24 ngelinux001 insights-client: raise ConnectionError(err, request=request) Dec 9 01:11:24 ngelinux001 insights-client: ConnectionError: ('Connection aborted.', error(110, 'Connection timed out'))
The issue is fixed with Python version 3.5.