使用ssh连接到EC2的多个实例

时间:2015-02-13 00:50:33

标签: linux ssh amazon-ec2

我刚开始使用亚马逊网络服务,并且能够启动实例。一位朋友向我展示了如何使用ssh连接AWS的示例教程。很简约。我下载了密钥并编辑了/.ssh/config文件。 配置文件的示例

Host *
ServerAliveInterval 300

Host <name desired to connect>
 HostName <domain name>
 port 22
 User ubuntu
 IdentityFile /pathname/keyfile

我的问题是,如果我有2个实例,现在我想ssh到启动的新实例。我将如何编辑配置文件。我已经陷入困境,也是Linux的新手(昨天一直在学习Linux,而且非常酷且功能强大)。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

你可以通过在终端上运行它来ssh到任何ec2实例:

ssh -i path_to_pem_file ubuntu@<HostIP_or_NAME>

例如

ssh -i /temp/root1.pem ubuntu@54.23.122.34