Debian12使用Xshell连接失败解决办法详细

1、Debian开启ssh服务

sudo apt update -y
sudo apt install ssh

2、编辑配置文件

# 安装vim
sudo apt install vim

vim /etc/ssh/sshd_config

3、将#PermitRootLogin prohibit-password的注释去掉,设置为yes

Debian12使用Xshell连接失败解决办法详细_第1张图片

4、将#PasswordAuthentication no的注释去掉,并且设置为yes

Debian12使用Xshell连接失败解决办法详细_第2张图片

5、保存退出

:wq

6、重启 SSH 服务

sudo systemctl restart sshd

结束!

你可能感兴趣的:(debian,linux,xshell)