切换到root用户:sudo -
编辑配置文件:vim /etc/ssh/sshd_config(注意是sshd_congfig不是ssh_config)
修改参数:
PermitRootLogin yes(这个参数可能没有,直接加到文件最后一行就行了)
PasswordAuthentication yes
参数含义
PermitRootLogin 如果为yes则允许root远程登录
PasswordAuthentication如果为yes则允许密码身份验证。如果为no,需要其他身份验证方式,如公钥身份验证
修改root密码:passwd
重启ssh服务:systemctl restart ssh