ssh-agent Questions

1

Solved

In order to push/pull from GitHub using SSH, I have to... $ eval $(ssh-agent -s) $ ssh-add ~/.ssh/git_id_rsa $ git push origin master However, when I push/pull to remote git repositories I host ...
Dogie asked 22/6, 2017 at 13:32

2

Solved

I wanted to push on a remote git repository. I typed the wrong passphrase three times. I have created a new ssh key and registered the new public key on the repository server. But the ssh agent doe...
Domett asked 8/6, 2017 at 18:14

6

I have set up everyhing I could find, but still cloning a repo from GitHub hangs the provisioning process. I have: server in known_hosts .ssh/config Host github.com ForwardAgent yes StrictHos...
Hartzog asked 29/1, 2014 at 9:59

2

I am running emacs in server mode as a systemd user service and want to pull from a pubkey-authenticated remote repository using magit. Unfortunately, magit (or its git child process) cannot use my...
Gallicanism asked 9/2, 2017 at 12:27

4

I’m using Ansible 1.5.3 and Git with ssh agent forwarding (https://help.github.com/articles/using-ssh-agent-forwarding). I can log into the server that I am managing with Ansible and test that my c...
Schaumberger asked 9/6, 2014 at 16:3

1

We currently run a script on our desktop that uses paramiko to ssh to a remote linux host. Once we are on the remote linux host we execute another command to log into another remote machine. What w...
Adabelle asked 14/5, 2014 at 23:3

3

Solved

I have a BitBucket account. Despite setting up the ssh key on the computer and then adding it on my bitbucket account, I fail at connecting: $ git clone [email protected]:my-account/myrepo.gi...
Samora asked 8/7, 2016 at 14:16

6

Solved

OK, strange question. I have SSH forwarding working with Vagrant. But I'm trying to get it working when using Ansible as a Vagrant provisioner. I found out exactly what Ansible is executing, and t...
Ordonez asked 6/1, 2014 at 14:57

2

Solved

So this has proved to be a very difficult thing to google. I have a work setup where I run everything off of a laptop that I hibernate or shut down at the end of the day. Doing so obviously cuts of...
Zanze asked 30/12, 2015 at 20:26

1

Solved

I'm using the jenkins-cli.jar file from my jenkins server, and on every run it prompts me for my ssh key passphrase. I'd like it to use my ssh keychain so I don't have to enter it on every invocati...
Cash asked 12/6, 2015 at 15:16

4

Im using the Jenkins ssh-agent plugin in order to give ssh credentials to my builds which works perfectly, however I have it set up to poll the scm (in this case bitbucket git) in order to check fo...
Had asked 4/10, 2013 at 0:16

1

I can't force vagrant provisioning to clone private git repos from bitbucket. I have vagrant 1.6.3. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.ssh.private_key_path = "~/.vagran...
Milepost asked 18/6, 2014 at 21:35

1

Solved

I have been able to setup the sharing of ssh-agent for public-key authentication after reading https://superuser.com/a/230872/301446 The environment file thus generated has the following contents:...
Traditionalism asked 3/3, 2014 at 18:28

1

Solved

After running eval `ssh-agent -s` ssh-add ~/.ssh/id_rsa and entering my passphrase, git still prompts me to enter the passphrase every time I perform a remote action. To illustrate: bash-4.1$...
Linkboy asked 4/2, 2014 at 8:20

1

Solved

I am trying to have my personal server be my primary git remote and automatically mirror that to github. I found this article which gets it mostly working with a post-receive script that does git p...
Excitor asked 27/10, 2013 at 17:48

2

Solved

I have msysgit installed with OpenSSH option. In Git bash, I can run ssh-agent, and it manages the passphrase for my ssh key. Is it possible for the Hudson Git plugin to use ssh-agent? Currently, i...
Aposiopesis asked 6/7, 2010 at 17:34

2

ssh-agent has a protocol whereby data can be sent to it to get signed by a particular private key: http://api.libssh.org/rfc/PROTOCOL.agent In Linux, with ssh-agent, you'd open a Unix domain sock...
Briefs asked 17/9, 2012 at 3:52

1

Solved

I'm trying to deploy a project using Capistrano. My development machine is running Windows 7; the server I'm deploying onto is Linux. In the deploy.rb script, the following is set: ssh_options[:f...
Useful asked 12/4, 2012 at 12:49

1

Solved

Suppose Mysql -dbs and an admin with a bad habbit to forget the passwords (or paranoid enough wanting more creative authentication, not just password). Is it possible to access Mysql -root shell fo...
Woodchopper asked 9/5, 2012 at 23:44

© 2022 - 2024 — McMap. All rights reserved.