Questions tagged [sshd]

The Secure Shell (SSH) daemon. It is the server side process to which SSH clients can connect and invoke commands and services. Note that system administration questions are off-topic on this site.

SSHD is an acronym for Secure Shell Daemon, the OpenSSH SSH server. It is the server side process to which SSH clients can connect and invoke commands and services.

Use instead if your question is not specifically about the daemon, but (also) about the client or the protocol.

Note that system administration is off-topic on Stack Overflow. If your question is not a programming question, ask on Unix & Linux (if running under Linux or other unix system), Super User (if you aren't a professional system administrator) or Server Fault (if you are a professional system administrator).

Useful Links:

The acronym is occasionally used to refer to Solid State Hard Drives, more commonly abbreviated .

392 questions
0
votes
1 answer

Ubuntu Server and Active Directory group login

Note: I am neither a Windows or Unix IT guy. Just a unix-familiar software developer working with our windows based IT team. I have successfully joined an Ubuntu 16.04 server to our Active Directory domain. By that I mean that the computer shows up…
Mister Rose
  • 117
  • 3
  • 11
0
votes
1 answer

How to connect to SSHD inside a Docker container from Windows?

I have a Ruby on Rails environment, and I'm converting it to run in Docker. This is largely because the development machine is a Windows laptop and the server is not. I have the Docker container mainly up and running, and now I want to connect the…
Josh Russo
  • 3,080
  • 2
  • 41
  • 62
0
votes
1 answer

Connecting Visual Studio (w Xamarin) to Mac

I have a fully set-up Mac with OSX 10.11 with all the necessary to run Xamarin for iOS. I've installed on a Windows 10 laptop Visual Studio 2015 and got the following error: Unable to authenticate with ssh keys. Please try to log in with…
Gianlu28
  • 13
  • 5
0
votes
1 answer

After change home directory, ask password with ssh

Just created a new user B on CentOS 6.8 and set public key of Ubuntu 16's user A to B's authorized_keys. Works fine. NOT ask password through ssh connection. After change B's home directory (in /etc/passwd/ : /home/B > /user/B), ask B's password.…
enowy
  • 11
  • 3
0
votes
0 answers

Using users cookbook with Chef to login with public key but asks for password

I have both id_rsa and id_rsa.pub in my ~/.ssh folder. I followed this tutorial (it's basically the repo's README file) to add myuser with my id_rsa.pub key. When I test using Test Kitchen, I try to login via ssh with ssh mysuser@192.168.33.33 but…
Christopher Francisco
  • 15,672
  • 28
  • 94
  • 206
0
votes
1 answer

Is it possible to configure sshd to use the current account in Cygwin?

I'm currently using Cygwin on Windows 10. I've seen material such as this, or this (which says the first source is outdated), and both of them revolve around running; ssh-host-config to configure sshd as a service. I was wondering how one would…
August
  • 35
  • 5
0
votes
1 answer

In AWS, access control by ssh proxy + sshd

In AWS, our users(system admins) can access internal zone DB servers by using SSH tunneling without any local firwall's restrictions. As you know, to access internal node a user must go through public zone gateway server first. Because the gateway…
WANJUN
  • 3
  • 3
0
votes
0 answers

Passwordless authentication not working

I am trying to setup a passwordless authentication between my webserver & a reporting server using the below steps. It works fine in my dev environment , however in the customer environment it doesn't. Steps : As testUser user on web server :…
Sameervb
  • 381
  • 3
  • 5
  • 15
0
votes
1 answer

how to recover an amazon ec2 instance with a messed up sshd configuration

when changing /etc/sshd_config I made a mistake and didn't notice that sshd wasn't running anymore when I logged out. Naturally I can not log back in because sshd is not running. Is there any other way to connect back into a amazon ec2 instance?
Jamgold
  • 1,716
  • 1
  • 14
  • 18
0
votes
1 answer

do linux containers go to sleep?

I keep receiving randomly "refused connection" while trying to ssh into linux containers. In order to try to find if it was a rogue computer that was impersonating the IP of the container, I ran an arping on the interface of the machine what was…
Kaz
  • 1
  • 2
0
votes
1 answer

Recover 'sshd_config' file in CentOS server

I have a 10 node cluster. Out of which, I was working on of the node(which is not a master node). I was trying to configure IPython and had made some changes to sshd_config file. To make those changes come into effect, I ran this command: sudo…
Munagala
  • 69
  • 2
  • 12
0
votes
1 answer

Why SSH server on windows7 x86 failed, while SSH client working

I am working recently on building Hadoop environment on windows7 OS. However, I got stuck in SSH configuration which blocks all the remaining work for Hadoop. I believe it's nothing to do with Hadoop, so any one familiar with SSH can do me a great…
0
votes
1 answer

Setup OpenSSH server on Windows 7 for keybased authentication

Would anyone please be able to assist me with a detailed guide in how to set up a SSHD server on a Windows 7 host along with Keybased authentication. I am attempting to have the communication setup between an Linux Mint and the Windows 7 host. Using…
Learner
  • 43
  • 1
  • 9
0
votes
1 answer

Camel ProducerTemplate's requestBody() gets stuck

I'm trying to write a SSHD integration demo with Mina SSHD server (0.14.0) and Camel SSH component (2.16.2). Now I can communicate with the SSHD perfectly by Putty, but failed to integrate the SSHD with Camel, I couldn't get any response from the…
derek.z
  • 907
  • 11
  • 19
0
votes
0 answers

Execute Command with Karaf + SSH + Java

I'm trying to connect to karaf from SSH from java (as shown in the documentation), the thing is, i am not able to execute any command from my java code. What i'm trying to do is to stop and start bundles from java. i've already tried to use both…