Explanation -- the paramiko error says please try to run
"Random.atfork()" which is a pyCrypto thing. It seems to be a newer
Pycrypto issue (CentOS 6 does not have this function, it seems), not
even a paramiko bug at all. Given it seems to be related to forking,
I'd like to know if this works, if not, it may be a starting point for
something that does actually work with the paramiko issue.
I have attached a patch I would like you to test.
BTW, here's the part of the PyCrypto code that is being annoying:
def _check_pid(self):
# Lame fork detection to remind developers to invoke Random.atfork()
# after every call to os.fork(). Note that this check is not reliable,
# since process IDs can be reused on most operating systems.