Failed to start sshd.service: Unit sshd.service not found.
时间: 2023-12-04 19:21:25 浏览: 341
start service 启动不了解决方案
4星 · 用户满意度95%
这个错误通常是因为你的系统上没有安装 `sshd` 服务。你可以通过以下命令安装:
- Ubuntu/Debian 系统:`sudo apt-get install openssh-server`
- CentOS/RHEL 系统:`sudo yum install openssh-server`
安装完成后,你可以通过以下命令启动 `sshd` 服务:
- Ubuntu/Debian 系统:`sudo systemctl start ssh`
- CentOS/RHEL 系统:`sudo systemctl start sshd`
如果你想让 `sshd` 服务在系统启动时自动启动,你可以使用以下命令:
- Ubuntu/Debian 系统:`sudo systemctl enable ssh`
- CentOS/RHEL 系统:`sudo systemctl enable sshd`
阅读全文