Top "Ssh" questions

GENERAL SSH SUPPORT IS OFF-TOPIC.

Best way to use multiple SSH private keys on one client

I want to use multiple private keys to connect to different servers or different portions of the same server (my …

ssh ssh-keys openssh
Pseudo-terminal will not be allocated because stdin is not a terminal

I am trying to write a shell script that creates some directories on a remote server and then uses scp …

linux bash shell ssh
Perform commands over ssh with Python

I'm writing a script to automate some command line commands in Python. At the moment I'm doing calls thus: cmd = "…

python ssh
How do I remove the passphrase for the SSH key without having to create a new key?

I set a passphrase when creating a new SSH key on my laptop. But, as I realise now, this is …

unix ssh passwords openssh passphrase
Change key pair for ec2 instance

How do I change the key pair for my ec2 instance in AWS management console? I can stop the instance, …

amazon-web-services amazon-ec2 ssh key-pair
Extract public/private key from PKCS12 file for later use in SSH-PK-Authentication

I want to extract the public and private key from my PKCS#12 file for later use in SSH-Public-Key-Authentication. Right now, …

ssh openssl certificate x509 pkcs#12
How to permanently add a private key with ssh-add on Ubuntu?

I have a private key protected with a password to access a server via SSH. I have 2 linux (ubuntu 10.04) machines …

ubuntu ssh key ssh-agent
Git error: "Host Key Verification Failed" when connecting to remote repository

I am trying to connect to a remote Git repository that resides on my web server and clone it to …

git ssh ssh-keys
How to enter ssh password using bash?

Everyday I am connecting to a server through ssh. I go through this routine: IC001:Desktop user$ ssh user@my.…

bash ssh
What is the cleanest way to ssh and run multiple commands in Bash?

I already have an ssh agent set up, and I can run commands on an external server in Bash script …

bash unix ssh