We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dstack server
The server fails to connect to the gateway to set it up. If the server is restarted, the server hangs while connecting to the gateway.
When dstack server is being started, if OpenSSH is older than 8.3, show a warning that OpenSSH 8.3+ is required.
Any
No response
This happens because dstack relies on ssh's -f option which doesn't work properly with OpenSSH older than 8.3.
dstack
ssh
-f
From OpenSSH's release notes:
ssh(1): close stdin/out/error when forking after authentication completes ("ssh -f ...") bz#3137
The text was updated successfully, but these errors were encountered:
I believe the fix was introduced in OpenSSH 8.4 (https://www.openssh.com/txt/release-8.4), so we should check for OpenSSH >= 8.4
Sorry, something went wrong.
Hey @peterschmidt85, I would like to give a hand to fix this bug, May I?
@loghijiaha That would be amazing! Ping me if you need help or have any questions!
No branches or pull requests
Steps to reproduce
dstack server
on a machine with OpenSSH older than 8.3.Actual behaviour
The server fails to connect to the gateway to set it up.
If the server is restarted, the server hangs while connecting to the gateway.
Expected behaviour
When
dstack server
is being started, if OpenSSH is older than 8.3, show a warning thatOpenSSH 8.3+ is required.
dstack version
Any
Server logs
No response
Additional information
This happens because
dstack
relies onssh
's-f
option which doesn't work properly with OpenSSH older than 8.3.From OpenSSH's release notes:
The text was updated successfully, but these errors were encountered: