前言
升级openssh 到9.0 借鉴:https://blog.csdn.net/qq_43417559/article/details/125100405#comments_23712243
本文借鉴:https://blog.51cto.com/u_15580946/5253963
报错一般以下报错是密码错误,但是最近我升级了openssh,权限没给对导致的远程连接失败
Pesrmission denied, please try again.
我对ssh的配置文件进行了以下修改
vim /etc/ssh/sshd_config
## 修改状态为yes PermitRootLogin yes PubkeyAuthentication yes ## 配置文件中在最后一行补充一行算法 HostKeyAlgorithms ssh-rsa,ssh-dss
重启sshd即可
systemctl restart sshd