[problem help] SSH使用root账号登陆报错
Tofloor
poster avatar
张相山
deepin
2024-09-19 20:25
Author

02b6cae27a15f64fa2b3c784023d229.png

使用root登陆报这个错误,用普通账号登陆正常,有大佬知道原因不,这个该怎么解决

Reply Favorite View the author
All Replies
xclimbing
deepin
2024-09-19 20:57
#1

默认sshd服务都是禁止root登录的。你得改一下sshd服务的配置,编辑/etc/ssh/sshd_config文件,加上:

PermitRootLogin yes # 允许 root 用户登录

PasswordAuthentication yes # 允许使用密码进行身份验证

然后重启sshd服务。service sshd restart

Reply View the author
乾豫恒益
deepin
2024-09-20 08:44
#2

agree

Reply View the author
张相山
deepin
2024-09-20 09:07
#3
xclimbing

默认sshd服务都是禁止root登录的。你得改一下sshd服务的配置,编辑/etc/ssh/sshd_config文件,加上:

PermitRootLogin yes # 允许 root 用户登录

PasswordAuthentication yes # 允许使用密码进行身份验证

然后重启sshd服务。service sshd restart

重启系统可以了,joy 重启命令没有效果,昨天搞了几个小时,还是重启大法好

Reply View the author
xclimbing
deepin
2024-09-20 09:09
#4

就sshd服务来说,根本没必要重启系统。大不了kill掉再启动呗。

Reply View the author