Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to scp files to Amazon ec2 and wanted to know if there is any way to do so.Thanks

share|improve this question

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.

1 Answer

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:

<scp keyfile="${project.amazon.keyfile}"
    remoteTodir="ec2-user@${project.amazon.server}:${project.amazon.remotedir}"
    password="${project.amazon.password}"
    trust="${project.amazon.trust}"
    port="22">
    <fileset dir="${project.dir}">
        <exclude name="**/*.project"/>
        <exclude name="**/.*/**"/>
        <exclude name="**/_*/**"/>
        <exclude name="**/Thumbs.db"/>
    </fileset>
</scp>

The key to success with this method is the keyfile attribute, which points to the .pem certificate supplied by Amazon. You don't really need the password attribute, but I left it there because that's how my build file was.

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).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.