无法启动sshd


35

我是Ubuntu的新手,正在尝试启动sshd,但是存在很多问题。我已经尝试通过运行sudo apt-get remove openssh-client openssh-server和卸载并重新安装ssh sudo apt-get install openssh-client openssh-server。当我跑步时,sudo service ssh restart我得到:

stop: Unknown instance:
ssh start/running, process 3638

sudo service sshd start给我unrecognized service

我跑步时ps -A | grep ssh什么也没得到。跑步ssh localhost使我拒绝连接。


为什么将其标记为sshd?我现在正面临一个问题,但是除了标题之外,它没有出现在问题中。
gsamaras

Answers:



6

Ubuntu ssh服务将从ssh开始,而不是sshd。

尝试:

 sudo apt-get remove --purge openssh-server
 sudo apt-get install openssh-server

然后尝试:

sudo service ssh restart   

要检查其状态:

sudo service ssh status

可以在以下位置找到配置文件 /etc/init/ssh.conf

有关remove和的详细信息purge

remove -不删除包括配置文件

purge -使用清除命令,还删除了配置文件。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.