答案1
如果我正确理解了您的问题,您正在尝试连接到您的 Amazon EC2 实例。
EC2 实例连接
安装 EC2 实例连接然后连接到您的实例
$ mssh i-001234a4bf70dec41EXAMPLE
使用 SSH
生成 SSH 密钥
$ ssh-keygen -t rsa
将您的 SSH 密钥推送到 EC2 实例
$ aws ec2-instance-connect send-ssh-public-key --region us-west-2 --instance-id i-001234a4bf70dec41EXAMPLE --availability-zone us-west-2b --instance-os-user ec2-user --ssh-public-key ~/.ssh/id_rsa.pub
登录您的 EC2 实例
$ ssh -i ~/.ssh/id_rsa [email protected]