Typo in the ssh connection snippet?
HynekS opened this issue · 0 comments
HynekS commented
In the docs, there is this snippet:
ssh -I <path to LightsailDefaultKey-zone.pem> ubuntu@<IP address>
Using this gives me an error: dlopen LightsailDefaultKey-eu-central-1.pem failed: Exec format error
. It seems that the -I
parameter should be lowercase:
ssh -i <path to LightsailDefaultKey-zone.pem> ubuntu@<IP address>
This resolved the issue for me.
However, I'd give it the benefit of the doubt because this repo is a few years old (it might have worked when published?) and I am a Windows user (lots of possibilities to mess up on my side…).
I can open a PR (if it'd be welcomed). Cheers!