You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cloud start occasionally hangs in chef bootstrap, or errors out with following error from ssh: "ssh_exchange_identification: Connection closed by remote host".
This seems to be caused by Connections#ping_port leaving TCP port open, and starving out ssh session (maximum number of concurrent ssh session (this is controlled either MaxSession and MaxStartups parameters in sshd_config, each defaults to 10). Fix is to close TCPSocket after using it. Will provide a patch.
The text was updated successfully, but these errors were encountered:
Cloud start occasionally hangs in chef bootstrap, or errors out with following error from ssh: "ssh_exchange_identification: Connection closed by remote host".
This seems to be caused by Connections#ping_port leaving TCP port open, and starving out ssh session (maximum number of concurrent ssh session (this is controlled either MaxSession and MaxStartups parameters in sshd_config, each defaults to 10). Fix is to close TCPSocket after using it. Will provide a patch.
The text was updated successfully, but these errors were encountered: