Question

I have an amazon EC2 instance and I know how to access it with cygwin or putty

ssh -i pem_file.pem ubuntu@remote_ip

There is a project folder on it that I want, but I don't want to code in this env using vim or other plain editors. I want to import this project to my Aptana IDE for convenience. I found out that Aptana has a remote show view with two options: s3site or ftpsite.

Is this what I need to do?

If it is, can anybody tell me how to import it?

Thank you!

Was it helpful?

Solution

To import, you can scp the folder in your local m/c

  scp -r -i path-to-secret-key ubuntu@ec2-address:/home/ubuntu/app-folder-location /home/user/local-mc-location
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top