Unit sshd.service could not be found.

错误原因:

刚安装了Ubuntu18.04系统,用Xshell连接服务器失败,因为服务器没有开启 可被远程连接的功能。指令输入:systemctl status sshd 然后出现了标题上的错误。

解决方法:

一、检测bug原因

ps -e|grep ssh (检测是否安装ssh服务)

Unit sshd.service could not be found._第1张图片

可以看到只有 ssh-agent,并没有 sshd 服务。

二、安装sshd

sudo apt-get install openssh-server          (安装sshd服务)

Unit sshd.service could not be found._第2张图片

三、启动 sshd服务

/etc/init.d/ssh start             (启动服务)

ps -e|grep ssh   (再次检测)

Unit sshd.service could not be found._第3张图片 

 

 

你可能感兴趣的:(服务器,ssh,p2p,ubuntu,centos)