1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 您应当使用SSH客户端连接至您的EC2上执行该教程,譬如您可以使用Visual Studio Code连接到您的EC2实例(而非Cloudshell)。首先,您需要在Visual Studio Code中安装远程SSH扩展,然后创建一个配置文件。您的配置文件应该如下所示:
# 了解更多关于SSH配置文件的信息:# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host <name of EC2 instance>
HostName <Public IPv4 DNS>
User ec2-user
IdentityFile <where you stored your key pair in you computer>/<key pair name>.pem
另一个选择是使用Cloud9作为完全托管的开发环境。
相关内容
- AWS 官方已更新 1 年前
- AWS 官方已更新 1 年前
- AWS 官方已更新 1 年前
- AWS 官方已更新 3 年前