1,989 questions
0
votes
3
answers
1k
views
Load key "/root/.ssh/pipelines_id": invalid format
I am using bitbucket pipeline to deploy app on a ec2-server.
here is my bitbucket-pipelines.yaml file
image: atlassian/default-image:3
pipelines:
branches:
dev:
- step:
name: ...
0
votes
1
answer
166
views
Docker build on tensorflow version 2.4.3 gives out public key errors
i am trying to build a docker from the tensorflow dockerhub, using tensorflow version 2.4.3, i did a simple pull and docker file:
$ docker pull tensorflow/tensorflow:2.4.2-gpu
And here is the ...
-1
votes
1
answer
301
views
What is Packer's SSH key in .ssh/authorized_keys for on my EC2 instance?
When I look into ~/.ssh/authorized_keys on my AMI I see something like:
no-port-forwarding,no-agent-forwarding,no-X11-forwarding,command="echo 'Please login as the user \"ubuntu\" ...
0
votes
1
answer
916
views
ssh keys inside cloud build
I am trying to create a service that would run in a container, connect to a remote host by ssh and perform several commands remotely. This service will be built and run in cloud build. Right now I am ...
0
votes
1
answer
512
views
Ubuntu & Github / SSH does not work anymore - "Permission denied (publicK=key)"
had set up SSH on Ubuntu WSL for two (school .edu & personal) github accounts. They worked, & I was able to make commits and clone repos from both accounts using
git config user.name/user....
3
votes
2
answers
7k
views
Could not open a connection to your authentication agent.(Individual case!)
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 ...
2
votes
2
answers
1k
views
terraform jsondecode secrets manager ssh key containing escape characters not readable
I'm facing a surprising issue with the terraform code.
I have in AWS secrets manager a ssh key (one liner with escape characters). If I add this as a string in the values file everything works file.
...
0
votes
1
answer
989
views
Git keeps and old SSH key and won't let me use my new one
I have a long history with git on a particular PC, so things are quite messy.
I have a fresh SSH key that I want to use with Git for Github.
Everything is setup properly, keys are generated, added to ...
0
votes
1
answer
1k
views
Cloning GITHUB project to ubuntu 22
I've had to wipe and reinstall my ubuntu server twice now due to failing and some how corrputing/locking my self out of the server when it comes to setting up the SSH.
I'm going out on a whim and ...
0
votes
1
answer
120
views
Why am I receiving an error when setting up a SSH Key for GitHub?
I am trying to create a SSH Key for Github.
I keep receiving an error when I test my set up.
I have a macbook pro version 12.0.1
I have tried over and over again. I cant figure out the problem.
Please ...
0
votes
1
answer
755
views
Ventura OSX giving permission denied error on pod installing. SSH issue
I have just upgraded my OSX to Ventura, And it started making my life hell. I have personal git server, usually we create ssh with ssh-keygen command. I created and provided the public to the server ...
5
votes
2
answers
6k
views
I've been trying to reconfigure my SSH key
I keep getting the following error:
git commit -sam "blah blah blah"
fatal: either user.signingkey or gpg.ssh.defaultKeyCommand needs to be configured
I just updated Git completely trying ...
4
votes
1
answer
1k
views
git fails to clone submodule with ssh in azure devops pipeline
I'm trying to use the Azure DevOps pipeline. The main repository the pipeline is supposed to run on is cloned just fine, except that I can't get to clone it's submodules. The submodules are added ...
0
votes
0
answers
32
views
Can Ansible Push SSH Pub key Even If the User's Home DIR Hasn't Been Created?
Servers are connected to the AD environment. I want to push the pub key to enable passwordless access.
However, I found my playbook failed if the user's home directory was not present. Do I have to ...
-4
votes
1
answer
5k
views
WHY my ssh key not generating from gitbash after following all the mentioned command on github site?
After using several commands from githun site
https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
Still my ssh key has been ...
0
votes
0
answers
428
views
How to get the fingerprint of an encrypted ssh private key in go?
Is there a way to get the fingerprint of a passphrase protected ssh private key in go without knowing the passphrase?
I know it's possible using the openssh tools:
$ ssh-keygen -t rsa -b 4096 -f ...
3
votes
2
answers
3k
views
GitHub using the wrong SSH key
I have two GitHub accounts setup with ssh keys, one personal and one enterprise.
I have an ssh config file as such:
# * GitHub CKO SSH Key
Host github-enterprise
HostName github.com
AddKeysToAgent ...
0
votes
2
answers
960
views
Is it possible using "su -c" with multiple commands but in one session?
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-...
0
votes
1
answer
566
views
Apache VFS2 with Private Key but without a key file
I am wanting to use VFS2 to connect to an SFTP server using a private key.
However, the application will be running using Java EE on an application server; and so I don't want to store the private key ...
0
votes
1
answer
1k
views
How can I import a repository into an Azure DevOps Project using SSH?
I'm trying to migrate a bunch of projects from a corporate Gitlab account to Azure DevOps. Az Devops has a handy "Import a repository" option... but it only has a field for a Clone URL (ie ...
0
votes
1
answer
781
views
Setting up an SSH Key and
I am new to coding and have been tasked with setting up a new SSH Key and connecting to GitHub. I have followed all the steps, and when I check if I have successfully paired I get this message:
$ ssh -...
-2
votes
1
answer
224
views
Cannot write ssh key to Docker container in CMD
I am trying to write ssh keys to docker image using CMD.
I have docker file like below.
FROM public.ecr.aws/ubuntu/ubuntu:18.04_stable
CMD ["sh", "-c", "echo $PUBLIC_KEY >&...
2
votes
1
answer
1k
views
Packer how to connect to Debian genericcloud image
is there any way that packer can connect to Debian genericcloud image? We are not using cloud-init, rather we are using packer to create our own image template for our private cloud. Using the iso and ...
1
vote
1
answer
7k
views
How do I fix the errors for each line when connecting SSH to github?
$ ssh -T [email protected]
/c/Users/user/.ssh/config line 1: no argument after keyword "host*"
/c/Users/user/.ssh/config line 5: no argument after keyword "identityfile~/.ssh/id_ed25519&...
1
vote
0
answers
284
views
Workbench fails to connect when using SSH tunnel to hosted DB
experiencing connecting workbench through SSH tunnel to connect to a hosted mysql DB. I'm using port 3309 as I have a local wamp server running mysql on 33066
My first time trying to connect via SSH ...