2,001 questions
1
vote
1
answer
36
views
Cannot establish SSH Connection with String Public Key in Python
I'm trying to establish an SSH connection to a remote server with paramiko using a public key as a string and am getting a paramiko.ssh_exception.BadHostKeyException error.
Here is the code I am using:...
-1
votes
0
answers
59
views
Using ssh between two GitHub repos
I am trying to do a pip install in an org of a private repo from another repo. Like this:
requirements.txt:
opencensus-ext-azure
opentelemetry-api
opentelemetry-sdk
opentelemetry-instrumentation-...
0
votes
1
answer
127
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
1
answer
61
views
Azure Storage Account sFTP configuration with "Use existing key stored in Azure Key Vault"
While configuring SFTP on an Azure Storage Account, I selected the “Use existing key stored in Azure Key Vault” option to authenticate a local user. However, the dropdown list for selecting the key ...
0
votes
0
answers
20
views
SSH key using Renci.ssh with C# error with keys [duplicate]
So, I´m using an windows computer, and i´m trying to connect to a database using an SSH tunnel.
The key file was given to me by the IT department in my department.
So I opened the windows command line ...
-1
votes
0
answers
63
views
SSH.NET Authenticate via private key only throws invalid private key
I'm trying to connect to a postgres db through an ssh tunnel.
I'm using the following code:
var key = @"-----BEGIN OPENSSH PRIVATE KEY-----
...
0
votes
0
answers
11
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 ...
0
votes
1
answer
42
views
What public key format does libssh2 expect?
I am using libssh2, where my flow ends up calling _libssh2_userauth_publickey, which itself calls _libssh2_ntohu32(pubkeydata). My understanding is that it should return a small number (e.g. 7 for &...
2
votes
1
answer
61
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 ...
1
vote
1
answer
86
views
Sudden change in access: Permission denied (publickey)
I have been using my local Git and GitHub connection via an SSH key that suddenly (without obvious cause) is not allowing me to manage my remote repo's by push or pull. I've tried deleting the SSH key ...
0
votes
0
answers
37
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
votes
1
answer
44
views
[email protected]: Permission denied (publickey) from Jenkins job agent
I am getting this error "[email protected]: Permission denied (publickey)." while I try to run git fetch in Jenkins pipeline scripts. This Jenkins server uses an SSH agent(a machine that ...
0
votes
0
answers
78
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 ...
0
votes
0
answers
41
views
SSH failure for private github repository
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 ...
1
vote
1
answer
59
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
...