本文主要是介绍解决ubuntu报错“Failed to start sshd.service Unit sshd.service not found.”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决ubuntu启动SSH服务出现“Failed to start sshd.service: Unit sshd.service not found.”
问题重现
在使用 apt-get install openssh-server 安装 SSH 后,使用 service sshd start 开启 SSH 服务时提示:
Failed to start sshd.service: Unit sshd.service not found.
解决方法
添加系统服务: ssh.service
systemctl enable ssh.service
控制台输入以上代码即可解决 “Failed to start sshd.service: Unit sshd.service not found.” 的问题。如有其他问题,欢迎留言。
这篇关于解决ubuntu报错“Failed to start sshd.service Unit sshd.service not found.”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!