Sempre que inicializo meu sistema (Ubuntu 16.04), não consigo fazer login via ssh e o serviço é relatado comoinactive (dead)
$ systemctl status ssh
● ssh.service - OpenBSD Secure Shell server
Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enab
Active: inactive (dead)
Então eu tento habilitá-lo via
$ sudo systemctl enable ssh
Synchronizing state of ssh.service with SysV init with /lib/systemd/systemd-sysv-install...
Executing /lib/systemd/systemd-sysv-install enable ssh
Posso iniciá-lo manualmente com
$ sudo systemctl start ssh
que o executa com sucesso, mas em cada inicialização, o mesmo problema.
Qual pode ser a razão para isso? Como posso depurar o problema?
Para referência, o arquivo de serviço (instalado pelo openssh-sever
pacote apt) é este:
[Unit]
Description=OpenBSD Secure Shell server
After=network.target auditd.service
ConditionPathExists=!/etc/ssh/sshd_not_to_be_run
[Service]
EnvironmentFile=-/etc/default/ssh
ExecStartPre=/usr/sbin/sshd -t
ExecStart=/usr/sbin/sshd -D $SSHD_OPTS
ExecReload=/usr/sbin/sshd -t
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
RestartPreventExitStatus=255
Type=notify
[Install]
WantedBy=multi-user.target
Alias=sshd.service