python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Attempting to ssh tunnel to another server within the vpc to a specific port to access my api
This is an odd scenario. Essentially, within a vpc, I am attempting to create an ssh tunnel from server A to server B in which server B hosts the api at port 9000, and server A wants to be able to rev...
Christina Stebbins
Votes: 0
Answers: 1
How to avoid interrupting SSH command with SIGINT when running in background
I have a shell script that launches a few commands on a remote machine.
ssh -n -S $socket -L port:localhost:port host -tt "remote_command" &
# ....
local_command
Where local_command is ...
noureddine-as
Votes: 0
Answers: 0
Connecting to docker openssh-server with key: Permission denied (publickey,keyboard-interactive)
I am trying to connect to openssh-server in docker container using ssh:
$ docker run -d \
--name=openssh-server \
--hostname=openssh-server \
-e PUID=1000 \
-e PGID=1000 \
-e PUBLIC_KEY_FILE...

Håkon Hægland
Votes: 0
Answers: 1
C# create ssh-rsa public key from existing private key string
I wish to create an ssh-rsa public key from an existing private key string
for example:
for the following private rsa key string:
-----BEGIN RSA PRIVATE KEY----- MIIEogIBAAKCAQEAvyN0aQKoYl/LAZ...

Or Yaacov
Votes: 0
Answers: 1