2

I'm running a Raspberry Pi with Ubuntu MATE 16.04 (I'm a linux newbie) I installed webmin, so I can see that my ssh server starts on boot, but is inactive I read the posting here:

Start ssh server on boot

and did all the things suggested...

sudo /etc/init.d/ssh start
sudo update-rc.d ssh defaults
systemctl enable ssh.socket

Nothing happens. The service loads on boot, but it's inactive.

list of services related to ssh with status

Zanna
  • 70,465

1 Answers1

5

Systemd does socket activation, so that the service is started when the socket comes into use. Due to this, you may not actually see an sshd process running after you reboot. Actually sshing to the system should start the daemon.

muru
  • 197,895
  • 55
  • 485
  • 740