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 follow this instruction. I have a local git repo and when I do a git push, I need the repo to be pushed to my EC2 instance.

But, in the above tutorial, when I do a git push origin master, I get Permission denied (publickey) error because I did not specify the identity file.

Say, I login to EC2 like this: ssh -i my_key.pem username@11.111.11.11

So, can I do something similar here to: git -i my_key.pem push origin master or set the identity file in .git/config

So, how can I set it up?

Update: Output of git config -l

user.name=my name
user.email=my_email_addreess@gmail.com
github.user=userid
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
remote.origin.url=ec2_id@my_e2_ip_address:express_app
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*

Update (from @Jon's comment):

If you have your key in an odd path just run ssh-add /private/key/path. This worked for me.

share|improve this question
2  
ssh-add /private/key/path worked! – zengr Mar 12 '11 at 8:07
When you say it worked, can you add instructions as to what you actually did step by step? – Designermonkey May 25 '12 at 9:52
@Designermonkey Updated. – zengr May 25 '12 at 15:55
Which machine do you run that on, local or EC2 instance? What is the express_app in your config? – Designermonkey May 30 '12 at 15:51
Awesome! thanks!! – Harry Jul 13 '12 at 13:23
show 2 more comments

5 Answers

up vote 18 down vote accepted

To copy your local ssh key to amazon try this

cat ~/.ssh/id_dsa.pub | ssh -i amazon-generated-key.pem ec2-user@amazon-instance-public-dns "cat >> .ssh/authorized_keys"

replacing the names of the key and amazon ec2 public dns, of course.

you will then be able to setup your remote on amazon

share|improve this answer
2  
I followed this, but used an rsa key instead of a dsa key. Also, I added a space between cat and >>, like: "cat >> .ssh/authorized_keys" – cmcculloh Apr 4 '12 at 15:38

The instructions listed here were more useful to me.

From the link:

Adjust your ~/.ssh/config and add:

Host example
Hostname example.com
User myuser
IdentityFile ~/.ssh/other_id_rsa

Now use the ssh host alias as your repository:

$ git remote add origin example:repository.git
$ git pull origin master

And it should use the other_id_rsa key!

share|improve this answer
I also found useful from that to git remote add ec2 ssh://ubuntu@54.243.293.151:zivot. I didn't know one could prefix addresses with ssh:// before that. – isomorphismes Oct 4 '12 at 5:55

You need to generate and upload a SSH key onto the EC2 instance. Follow this tutorial: http://alestic.com/2010/10/ec2-ssh-keys

share|improve this answer
1  
but I already have the key-value pair private key with me, which I used to login to EC2. – zengr Jan 8 '11 at 6:46
Try some of the solutions in this thread: serverfault.com/questions/39733/… – Jon Jan 8 '11 at 6:52
1  
i understand that part, but this is a Git configuration issue. – zengr Jan 8 '11 at 7:00
I don't see anything wrong with your configuration, so I believe that it is something wrong with your SSH keys, either misplaced or what not - it most likely would be that and not your configuration. – Jon Jan 8 '11 at 7:26
3  
If you have your key in an odd path just run ssh-add /private/key/path. – Jon Jan 8 '11 at 7:33
show 2 more comments
  1. Run ssh-keygen locally
  2. Copy the contents of (or transfer) ~/.ssh/id_rsa.pub to your remote instance
  3. Paste or cat the key into /etc/ssh/authorized_keys
    • echo "{paste key from clipboard}" >> /etc/ssh/authorized_keys
    • cat id_rsa.pub >> /etc/ssh/authorized_keys
share|improve this answer

I was getting permission denied when deploying via source control and couldn't figure out why. I realized my user I was creating an ssh key for (named ubuntu, also the recommended login for my ec2 server) was not the user who was responsible for cap deploy (root). Running an ssh-keygen for root and uploading that ssh key as a deploy key to bitbucket solved my issues.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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