Ubuntu sshd设置
Posted 王万林 Ben
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu sshd设置相关的知识,希望对你有一定的参考价值。
Ubuntu sshd设置
新装Ubuntu无法ssh
安装sshd并启动
$ sudo apt update
$ sudo apt install openssh-server
$ sudo systemctl start sshd
root无法ssh连接Ubuntu
修改/etc/ssh/sshd_config文件,允许root连接
#PermitRootLogin prohibit-password
修改为
PermitRootLogin yes
参考资料
https://ubuntu.com/server/docs/service-openssh
以上是关于Ubuntu sshd设置的主要内容,如果未能解决你的问题,请参考以下文章
opensuse 如何开放ssh端口,sshd_config 文件应经改了,防火墙也设置了22端口,但是还是无法用ssh登录!!