centos9默认未开启允许root用户ssh登录

开启方法如下

打开sshd_config文件

vi /etc/ssh/sshd_config

添加或编辑以下内容。允许root用户登录

PermitRootLogin yes

保存退出后,重启ssh服务

systemctl restart sshd