I\'m working to set up Panda on an Amazon EC2 instance. I set up my account and tools last night and had no problem using SSH to interact with my own personal instance, but
Just a note for anyone who stumbles upon this:
If you are trying to SSH with a key that has been shared with you, for example:
ssh -i /path/to/keyfile.pem user@some-host
Where keyfile.pem
is the private/public key shared with you and you're using it to connect, make sure you save it into ~/.ssh/
and chmod 777
.
Trying to use the file when it was saved elsewhere on my machine was giving the OP's error. Not sure if it is directly related.