- You can use free FTP service such as FileZilla or Bitvise SSH client to download your file from and upload your file to the running AWS instance.
- You can use a simple
scp
command to this, for example, copying file on local system to AWS instance:
scp -i /path/to/key/pair file/to/copy [email protected]:/path/to/file
For copying folder, just use flag -r
, like this:
scp -r -i /path/to/key/pair folder/to/copy [email protected]:/path/to/file
Note that a key pair file (.pem) is needed!
Rangsiman Ketkaew - [email protected]