Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
140 views

I’m trying to use the bundled ssh-agent that comes with Git for Windows, but when I try to start it via eval "$(ssh-agent -s)", it somehow seems to remove itself from the system (or at least ...
achang2's user avatar
  • 59
0 votes
0 answers
58 views

I am attempting to push/pull using SSH to my private github repository. I went through the steps of creating a key, uploading the public key to my github account, and adding it to my ssh-agent, using ...
kalekale's user avatar
1 vote
1 answer
45 views

Trying to deploy to a remote host via ssh. I have already tested the sshkey via same jenkins pipeline using bash commands and it works. echo prints the var values correctly as well. So no clue why ...
Oxycash's user avatar
  • 307
0 votes
1 answer
125 views

I have the following user service unit file set up to ensure that I have Github access at all times: [Unit] Description=SSH key agent [Service] Type=exec Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket ...
user968270's user avatar
  • 5,071
1 vote
1 answer
555 views

I have this simple Jenkins Pipeline using SSH Agent pipeline { agent any stages { stage("Backup") { steps { sshagent (credentials: ["ssh-...
iamrafael's user avatar
  • 106
4 votes
0 answers
289 views

I'm experiencing repeated prompts for my SSH passphrase when performing a git push in a repository that uses Git LFS. This repository is a backup tracking a large amount of work, and the issue occurs ...
selah's user avatar
  • 51
2 votes
0 answers
300 views

I've managed to google this solution for using my local ssh key inside the container. It allows me to access git repositories and works ok. services: app: ... environment: ...
Terax's user avatar
  • 173
0 votes
1 answer
139 views

i have the putty ssh agent running (due to the fact that i dont have administrator rights, this is the only option as this was installed by default) and use it to log into my remote workspaces in ...
apfreelance's user avatar
0 votes
1 answer
306 views

I am having a problem with ssh-agent: when I add my private key to the agent (started with eval "$(ssh-agent -s)", added with ssh-add ~/.ssh/privatekey and checked it was added with ssh-add -...
bahdimoukhadra's user avatar
0 votes
1 answer
499 views

I'm migrating some of our C# code from username/password Linux connectivity to using public/private keys (with passphrase). I've stored the private key in the Windows ssh-agent and all works well ...
Jonathan's user avatar
3 votes
1 answer
486 views

I'd like to use the SSH agent feature of 1Password in combination with my DDEV projects that run with colima as its docker provider. That means that the DDEV web container is able to use the SSH keys ...
denis's user avatar
  • 1,483
0 votes
3 answers
1k views

I am using Git and Git Extensions for Windows for version control. A part of my workflow is that I open the Git bash from within Git Extensions to work on the command line. One of the commands I often ...
Binarus's user avatar
  • 4,605
1 vote
0 answers
469 views

I use VS Code and Git-Bash for git commands on Windows, whenever I open it I need to set the ssh-agent and the SSH key address. When researching the subject I read several tutorials on how to ...
Robisonweb's user avatar
-2 votes
1 answer
914 views

i have windows as the host, working with devcontainer without wsl, created ssh key with custom name, let say id_github. and managed to set ssh-agent auto run, and can use git fetch with ssh key with ...
Asule's user avatar
  • 9
4 votes
0 answers
1k views

Situation I've got an internal GitLab that I'm trying to interact with within a devcontainer in VSCode. On my host machine, I use PuTTY's Pageant as my SSH Agent. I'd like to forward my Pageant SSH ...
johhny tex's user avatar
2 votes
2 answers
1k views

I am trying to add possibility to use host machine ssh keys to fetch private repositories. However, I haven't been successful to do so in a secure manner. I don't want to copy ssh key's at build time, ...
Sebastian Słomka's user avatar
0 votes
1 answer
1k views

I'm facing an issue with SSH agent forwarding from my Windows 10 machine to a remote Ubuntu 20.04 server. I followed the steps to enable and load my SSH key into the ssh-agent on Windows: # By default ...
Jacuzzi's user avatar
0 votes
1 answer
458 views

In my understanding, when the local machine try to connect to a remote server, the private key stored in ./ssh/id_rsa is used and the corresponding public key stored in ./ssh/id_rsa.pub is sent to the ...
zhongyuan chen's user avatar
0 votes
0 answers
245 views

We had to change our bitbucket URL after which Windows Jenkins slave node is unable to pull the git repo from the new bitbucket URL. It works fine on Mac /Linux. I have added / accepted the key for ...
Hemanth Sundareshan's user avatar
1 vote
0 answers
374 views

I have a Dockerfile which includes: RUN touch /ssh-agent RUN chmod 666 /ssh-agent and a docker-compose file which includes: build: dockerfile: Dockerfile ssh: - ...
scott_m's user avatar
  • 421
1 vote
2 answers
706 views

Everytime I need to push something to github I have a Permission Denied message. If I execute this commands on terminal: eval $(ssh-agent -c) ssh-add -l # Response: The agent has no identities. ssh-...
Hermus's user avatar
  • 203
0 votes
1 answer
1k views

What do I want to achieve? Using a single Ansible playbook, start ssh-agent if not running (on localhost). add ssh-key (that is passphrase protected). connect to remote machines to run tasks --- ...
Dr.PB's user avatar
  • 1,077
3 votes
1 answer
2k views

When I sign commits or tags with my ssh key (git commit or git tag -s), git keeps asking for the passphrase of that key. However, I do not want to enter the passphrase for every commit. I use two ...
Fabian's user avatar
  • 617
1 vote
3 answers
2k views

I'm trying to ssh into ec2 from jenkins, i have set the credentials in jenkins global with key downloaded from aws i,e "something.pem" . I copied the contents and pasted. not sure why ...
Keshav Singh N's user avatar
-1 votes
1 answer
150 views

My credentails which I configure in Jenkins as global credentails chaged during the copy process to remote server. Why? [The 'RSA KEY' changed]
dave vedant's user avatar
0 votes
1 answer
349 views

I am having trouble with ssh-agent not working...! My environment: $ ssh -V OpenSSH_8.2p1 Ubuntu-4ubuntu0.5, OpenSSL 1.1.1f 31 Mar 2020 $ ssh-add -L ssh-ed25519 ...
impactaky's user avatar
1 vote
0 answers
228 views

I know they're very different different things but is there anything similar to ssh's agent forwarding for the .netrc file? i.e. I want my local .netrc file to be available when I ssh into a remote ...
Milad's user avatar
  • 5,640
1 vote
0 answers
3k views

I have two users on the remote Windows 10 server (Build 10.0.19045.0) - controller (administrator) and worker (non-privileged user). The first user (admin) is able to use Microsoft's ssh-agent ...
Peter Zaitcev's user avatar
4 votes
2 answers
5k views

I am creating a podman image and I'm trying to understand how to allow the container use my host (Fedora 37) ssh-agent so as the container can clone git repositories. I would prefer this than using ...
dacucar's user avatar
  • 306
2 votes
1 answer
4k views

I have erroneously loaded an ssh key in the ssh-agent. I tried running ssh-add -D as I had no other important identities on this agent but this command deleted all identities except the one I was ...
afiori's user avatar
  • 669
1 vote
0 answers
428 views

I'd like to use my ssh keys inside a docker container that is already running. So far I was only able to find solutions to forward ssh keys during the build stage or run stage. But mounting the ...
TomTom's user avatar
  • 2,960
-2 votes
1 answer
2k views

I have just installed Ubuntu 22.04.1 LTS on a Desktop Computer with previous Windows 10. Now I want to connect to my server with ssh, but I don`t want to enter each time the password for the private ...
franc's user avatar
  • 616
1 vote
1 answer
1k views

I am trying to build a docker container with a private repo installed. I have no issue cloning the other repos that I require, but because one is private, it was suggested by a colleague to use --...
Douglas B's user avatar
  • 853
1 vote
2 answers
7k views

I am trying to deploy to aptible with github actions. This is my .yml file name: Cartwheel Staging CI run-name: ${{ github.actor }} activated these GitHub Actions on: pull_request: branches: [ ...
garthcodes's user avatar
-1 votes
1 answer
52 views

I have create private/publich key pair by ssh-keygen command line. I have already paste the content of ~/.ssh/id_ed25519.pub to github account I have already manually start ssh-agent and add the ...
JianWill Wang's user avatar
0 votes
1 answer
2k views

I've configured Windows 11 ssh-agent following the official documentation and then used ssh-add to add my SSH keys: PS> Get-Service ssh-agent Status Name DisplayName ------ ---- ...
gremo's user avatar
  • 49k
1 vote
2 answers
805 views

System configs: TeamCity Master: Windows Server 2012 R2 Standard TeamCity Agent: Windows Server 2022 Datacenter Infrastructure is in AWS with the correct security groups and open ports needed (9090, ...
Princy's user avatar
  • 643
0 votes
1 answer
6k views

I really confused to these 2 syntax. What makes they different? Under windows VS code and git bash environment, "$(ssh-agent -s)" works on me $ eval "$(ssh-agent -s)" Agent pid 966 ...
bbqbb's user avatar
  • 3
0 votes
0 answers
284 views

I got three servers, MyServer (centos7), Jumper and DestinationServer. I need to establish SSH connection from MyServer through Jumper to DestinationServer using Perl script with Net:OpenSSH lib. on ...
Wancerz's user avatar
  • 19
3 votes
2 answers
7k views

I'm new at Linux and I could not open a connection to my authentication agent. I think I've done everything right so far. I just followed the GitHub instructions. I also tried it without sudo and it ...
Tomas's user avatar
  • 31
0 votes
1 answer
535 views

When I run ssh-agent it does output to the console: SSH_AUTH_SOCK=/tmp/ssh-6xVL11wer5lW/agent.311122; export SSH_AUTH_SOCK; SSH_AGENT_PID=311122; export SSH_AGENT_PID; echo Agent pid 311122; However ...
armaka's user avatar
  • 264
2 votes
1 answer
751 views

I have 3 servers: (a), (b) and (c). Server (a) and (c) have server's (b) public key inside authorized_keys file. I try to access server (c) throughout ssh connection to server (b) from server (a). (a)...
armaka's user avatar
  • 264
0 votes
1 answer
4k views

I am trying to run some jq command over ssh-agent in a Jenkins pipeline. But I am getting the following error: Trying to run: ` stage("common-infra-deployment"){ steps{ ...
Kapil Yadav's user avatar
1 vote
1 answer
859 views

I am using simple function to list out all RSA keys using paramiko.agent.Agent().get_keys() function. But there is weird error: [Errno 22] Invalid argument: '\\.\pipe\openssh-ssh-agent' Also OpenSSH ...
OneTouchForHeight's user avatar
4 votes
1 answer
3k views

Does anybody know what endpoint the Windows OpenSSH Authentication agent listens on, and how it advertises this so that the Windows ssh.exe can communicate with it? I know I'm a bit late to the party, ...
John Jeffery's user avatar
  • 1,042
1 vote
1 answer
127 views

I would like to execute a "git push" command using Python script. I was hoping to achieve this by using python's subprocess.Popen() method. However when I invoke the "git push" ...
MikeG's user avatar
  • 68
0 votes
2 answers
994 views

I am trying run the following two command in one command. eval "$(ssh-agent)" ssh add ~/.ssh/id_rsa I tried with many possible solutions: su username -c "{ eval $(ssh-agent -s) }; ssh-...
SnackK0515's user avatar
3 votes
1 answer
1k views

After being hesitant of using ssh-agent for quite a while now, I finally decided to use it. I am typically on Windows working with git-bash. I was glad to find a helpful question about Running SSH ...
Johnson's user avatar
  • 368
6 votes
0 answers
3k views

I am trying to configure ssh for use with github on a new computer. I've attempted to follow the instructions listed in the tutorial on github to no avail. Here's a summary. Using my M1 mac's (macOS ...
murky-lion's user avatar
2 votes
2 answers
1k views

I am trying to use Windows Docker to build a docker image. When building the docker image, it will invoke pip to access remote private GitHub repositories. However, it always returned this error ...
yangxiang_li's user avatar

1
2 3 4 5
8