1,989 questions
0
votes
1
answer
78
views
Can’t push to GitHub with SSH key
I can’t push to GitHub through the Mac terminal in Eclipse - I found a question about the same problem, but can’t use the answer.
The answer I found: Git does not use SSH key for Github (Mac OS)
But ...
0
votes
1
answer
138
views
How to authenticate a Python package between two repos in GitHub and deploy
We have a private utility repo in GitHub and we would like to be able to install this package with a GitHub Actions. When developing locally I have created a ssh key, uploaded the public key to deploy ...
0
votes
0
answers
29
views
WSL and VS Code - Cannot Save SSH Key
I'm trying to get VS Code to work properly on my Windows Subsystem for Linux. For some reason, I am not able to permanently store the ssh key, and I am asked for the passphrase each time. I can do a ...
2
votes
1
answer
83
views
Can't SSH to GitHub using key saved in a custom lcoation
When I generate an ssh key in a different path than the default I can't access by ssh in github, I don't know what the problem is, but I know I have tried many times to generate and use a ssh with a ...
0
votes
0
answers
46
views
vscode- ssh remote connecting problem for no reaction in a long time
enter image description here
enter image description here
Hello,
I am a freshman for coding. But I met with this problem for so long time. I actually tried so many solutions here but still didn't work....
1
vote
0
answers
132
views
Cannot use SSH key in PhpStorm
I need to connect to my server via SSH using some private key (which is not default id_rsa). The key also requires some passphrase. I had no problem with it in terminal but now I want to connect in ...
1
vote
1
answer
64
views
Conflict between two git accounts on same system
I've added two ssh config in ~/.ssh/config:
Host account1
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile /home/USER/.ssh/account2_ssh
Host account2
User git
...
3
votes
1
answer
1k
views
SSH private key not found when using 1Password SSH Agent to authenticate to remote host or GitHub
I switched to keeping all my SSH private and public key pairs in 1Password, relying on 1Password SSH Agent to provide the key in time of authentication to SSH remote servers and/or GitHub with a ...
0
votes
1
answer
86
views
Multiple git account associated to folders and SSH Confiog
I'm working with multiple GitHub account (let's say userA and userB ...). My folder architecture is
Projects/
|- userA/
|- projectA1/
|- projectA2/
|- ... All the repository accessible ...
0
votes
0
answers
653
views
Deployment key issue - error in libcrypto
Preface: I am a very new dev, so many things are still new to me, excuse for my limited knowledge!
I'm adding a small deployment for a site I'm working on, specifically to grab what I push to our ...
1
vote
1
answer
162
views
Add ssh key to Xcode cloud to access bitbucket private repositories
I have one project and in which I have multiple private cocoa pods. i hosted all pods in my private git repository.
I have local pod specs repository which have multiple pod specs for different pods. ...
-1
votes
1
answer
111
views
Ansible-generated SSH keys works with Java 17 but not Java 8
I am generating SSH keys using an Ansible script that works fine with Java 17, However it's not working when using Java 8. The issue seems to be related to the encryption algorithm used in the ...
0
votes
0
answers
29
views
Is there a way to automate generating an SSH key for git clone every time I spin up a new remote server?
Currently, every time I spin up a new remote server, I create a new SSH key and register it with my GitHub account to clone private repositories.
I believe using an SSH key is mandatory for this, but ...
0
votes
0
answers
98
views
Can't sign in to github BUT gh works with ssh key, but 2fa recovery states no valid ssh keys for recovery?
I have different github account for different organizations. One which I use rather infrequently, I can't login into. The password reset email works fine but apparently I signed up for 2FA and lost ...
0
votes
0
answers
62
views
How can I debug an SSH connection in Eclipse RSE
I can connect to the remote server with a ssh key pair, but I cannot get the connection to work with RSE using these keys. RSE ignores the certificate and insists on a password.
I’m looking for output ...
0
votes
0
answers
452
views
How to Configure CI/CD Pipeline to Pull Changes Using SSH Key or Access Token Without Username and Password?
I am in the process of setting up a CI/CD pipeline and need some guidance on configuring my script to automatically pull changes from a target branch. I would like to achieve this without the need to ...
-1
votes
1
answer
120
views
MAC OS on AWS EC2- Need to use service account instead default ec2-user account and need it for hardening the OS
I have a requirement that MAC OS on AWS EC2, Need to use service account instead default ec2-user account while doing ssh like (ssh -i /path/to/your-key.pem ec2-user@your-instance-public-ip
), This is ...
1
vote
1
answer
1k
views
Libcrypto error in Docker container in Azure DevOps pipeline
I have a Azure DevOps pipeline that I use for Terragrunt CI. The source Terraform modules that I am using in my repo are stored in a second repo, and so in order to run terragrunt plan you need to ...
0
votes
1
answer
111
views
Jenkins EC2 agent - Host key verification failed
I'm using Jenkins EC2 Plugin to spawn agents on demand. During my job I have to clone other repository, so I'm using sshagent. However I was getting Host key verification failed error, so I've added: ...
0
votes
0
answers
1k
views
Cannot ssh into the container when created using podman with proper ssh-keys as well
I am trying to create a ubuntu container using podman and able to bring up the container successfully. However when I try to ssh into the container using ssh-keys it is not working. Here is my ...
1
vote
1
answer
517
views
EC2 Instance with persistent SSH Host Keys using Terraform
I am creating an ec2 instance for usage as a bastion host, using terraform. The instance is reached via an elastic ip. I deploy ssh-keys to the bastion host using a shell script inside the user_data ...
1
vote
0
answers
176
views
I'm having trouble connecting to the Colab server via SSH
Attemptiing to set up an SSH tunnel to a Google Colab instance using Ngrok. However, it encounters a ConnectionRefusedError, indicating that Ngrok is unable to establish a connection. This could stem ...
0
votes
1
answer
228
views
Unable to use browser for EC2 AWS login with inbound rule including my own IPv4
all. I am new to AWS and have limited tech support knowledge, so please bear with me. I recently created an AWS account for personal (not business) related reasons. I am using EC2, and Linux for ...
2
votes
0
answers
186
views
Generate a PuTTY-compatible private key with a passphrase
I want to generate a private key that is encrypted with a passphrase and can be used by PuTTYgen. My solution only needs to work on .NET 8. While a PPK in proprietary PuTTY format would be nice, I'm ...
0
votes
1
answer
361
views
How to resolve BadHostKeyException with paramiko? [duplicate]
I have following code to connect to a linux box and run a command, But I'm facing
BadHostKeyException even after I have added WarningPolicy and AutoAddPolicy.
print("---CCCCCCCCCCCCC--...