What scp
arguments should I use to download a file from an Amazon EC2 instance to local storage?
相关问题
- JQ: Select when attribute value exists in a bash a
- JavaScript File Transfer SSH
- How to upgrade/install Upstart deamon version 1.5
- Why does this bash script work at console but fail
- Connecting to Windows Server Service Bus on AWS
相关文章
- I cannot locate production log files on Elastic Be
- AWS - Configuring access to EC2 instance from Bean
- Error: “The security token included in the request
- Ansible Timeout (12s) waiting for privilege escala
- resource:memory error when trying to run an ECS ta
- Spark EC2 SSH connection error SSH return code 255
- GPU based algorithm on AWS Lambda
- AWS S3 access denied when getting image by url
If you are using Mac or Linux you can use
scp
or even more friendly, download an FTP client, if you are on Mac I recommend you to use CyberDuck. In the end all you need is an FTP client. If you are on Windows I would recommend you Filezilla.What OS are you in?
Since you are in Ubuntu, try this:
Use scp:
where:
This will copy the file into the current folder on the local machine.
You can read more here on how to access your instance with ssh if you haven't done already:
When you are able to ssh as in the above doc, you will be able to use scp to copy the file.
Another option is to bring up some Web server on your instance, configure HTTPS if your file is sensitive and then download using your browser, here are some tutorials: