Windows 子系统 Ubuntu20.04设置开启SSH服务

设置root密码

passwd root

编辑ssh配置文件

vi /etc/ssh/sshd_config

## 打开注释
Port 22
ListenAddress 0.0.0.0
ListenAddress ::

## 打开注释
PermitRootLogin prohibit-password
## 并修改为
PermitRootLogin yes

## 修改
PasswordAuthentication no
## 为
PasswordAuthentication yes

完成后启动sshd

service ssh start

如报错

 * Starting OpenBSD Secure Shell server sshd                                                                                sshd: no hostkeys available -- exiting

## 执行以下 不要做任何输入 直接回车
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key

ssh连接IP地址为主机的局域网ip地址

然后就可以使用Xshell进行连接操作了

上一篇:使用Docker安装Centos,并通过SSH连接到容器


下一篇:腾讯云用户名密码ssh不能登录解决