亚马逊AWS服务器远程连接
程序员文章站
2022-07-10 08:07:53
...
1、获取 ***.pem 文件
该文件是服务的证书文件,现在的AWS服务器只支持下载pem的证书
2、确认服务的账号
For Amazon Linux 2 or the Amazon Linux AMI, the user name is ec2-user.
For a CentOS AMI, the user name is centos.
For a Debian AMI, the user name is admin or root.
For a Fedora AMI, the user name is ec2-user or fedora.
For a RHEL AMI, the user name is ec2-user or root.
For a SUSE AMI, the user name is ec2-user or root.
For an Ubuntu AMI, the user name is ubuntu.
Otherwise, if ec2-user and root don't work, check with the AMI provider.
根据你开的不同的服务器类型,使用不同的账号,比如我使用的是Amazon Linux AMI服务器,那么我的默认账号是ec2-user
3、准备SSH客户端,有很多好用的客户端
这里我使用的是SecureCRT客户端,但是很遗憾的是这个客户端如果不预先配置好,无法配置pem的秘钥。但是可以预先配置好久可以了,如下图:
提前配置好,就可以使用pem格式的秘钥文件了
下一篇: Nginx反向代理实现前后端分离