Open varunwyest opened 4 months ago
To fix this issue you can make the following changes on the server when connected to it through ssh:
Open file /etc/ssh/sshd_config with a text editor like nano.
Add the line PubkeyAcceptedKeyTypes=+ssh-rsa
to the end of the file and save
Restart the service sshd with sudo systemctl restart sshd.service
or just restart the server.
I haven't found a real fix yet for this package.
The problem is not from meteor up, but from SSH itself.
ssh-rsa
is deprecated because SHA-1 is from now considered as insecured.
You should consider using ED25519 algorithm for your new SSH keys.
thank you! I was stuck on this
ssh-keygen -t ed25519 -C "your_email@example.com" ssh-copy-id -i ~/.ssh/id_ed25519.pub yourname@server
one: {
host: 'yourserver',
username: 'yourname',
pem: '~/.ssh/id_ed25519'
}
actually hours later this wont work, since mup deploy
wont auth with node. so @timsun28's workaround seems the right idea
We were using a very old ssh client. I wonder if this is any better with mup@1.5.11-beta.1
. Otherwise, maybe we could detect when this issue might be happening and show a more informative message.
Mup version (
mup --version
): 1.5.10 Mup configOutput of command