I am trying to scp files to Amazon ec2 and wanted to know if there is any way to do so.Thanks
closed as not constructive by marc_s, HackedByChinese, Don Roby, dgw, bažmegakapa Jun 10 '12 at 10:08
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
If you're looking for a way to do this from the CLI, see scp (secure copy) to ec2 instance without password. Otherwise: ANT is an easy way to scp to EC2. I use Eclipse, which has decent ANT support, allowing a simple "push button" or automatic deployment to an EC2 server using the scp task. However; you dont need Eclipse to run ANT. Here's a snippet from one of my build.xml files:
The key to success with this method is the I find it useful to make all of my changes locally, then use a "push button" deployment, but you can also setup a task to automatically scp files to EC2 on each save, which is a part of the Eclipse builder. Alternatively, you should be able to use tools like Filezilla or Cyberduck (for Mac). |
|||
|
|