amazon服务器下使用FileZilla上传文件到服务器

服务器系统: ubuntu 14.04
连接工具:FileZilla
连接方法:sftp

第一步:配置key
was是是用key方式进行连接,在建立服务器的时候会需要有一个密钥文件。例如:ubuntu.pem
打开filezilla,-》设置-》连接-》SFTP
即可看到以下页面
amazon服务器下使用FileZilla上传文件到服务器_第1张图片

然后点击“添加密钥文件”按钮,选择pem文件,这个时候可能会有提示:是否转换为ppk文件,点击确定,输入要转换成为的文件名,转换一下,然后点击“确定”。

这样密钥文件就配置好了,接下来就是如何进行连接了。

第二步:建立连接
选择“文件”-》站点管理器-》我的站点-》新站点
即可看到以下界面。
amazon服务器下使用FileZilla上传文件到服务器_第2张图片

主机内填写amazon服务器的 公有 DNS: (注意:是公有DNS,不是IP) ,协议选择为SFTP ,登陆类型正常,用户名为ubuntu,

对于 Amazon Linux AMI,用户名称是 ec2-user。
对于 RHEL5 AMI,用户名称为 root 或 ec2-user。
对于 Ubuntu AMI,用户名称是 ubuntu。
对于 Fedora AMI,用户名称为 fedora 或 ec2-user。
对于 SUSE Linux,用户名称是 root 或 ec2-user。
另外,如果 ec2-user 和 root 无法使用,请与 AMI 供应商核实。

密码清空,接下来点击连接,就可以连接成功了。
如果提示permission denied (public key)是因为key的原因导致的,可能需要重新换一下key。但是如果你用ssh的方式连接没有问题,用这种方式传文件是肯定没有问题的。

Summary of video tutorial: Edit(Preferences) -> Settings -> Connection -> SFTP, Click “Add key file” Browse to the location of your .pem file and select it. A message box will appear asking your permission to convert the file into ppk format. Click Yes, then give the file a name and store it somewhere. If the new file is shown in the list of Keyfiles, then continue to the next step. If not, then click “Add keyfile…” and select the converted file. File -> Site Manager Add a new site with the following parameters: Host: Your public dns name of ec2 instance Protocol: SFTP Logon Type: Normal User: ec2-user Press Connect Button (Please note: For an Amazon Linux instance, the default user name is ec2-user. For Ubuntu, the default user name is ubuntu. Some AMIs allow you to log in as root.)

你可能感兴趣的:(ssh)