当前位置:   article > 正文

vscode连接windows环境wsl下centos子系统报错 ssh: connect to host localhost port 22: Connection refused_vscode ssh [19:22:12.941] > ssh: connect to host 1

vscode ssh [19:22:12.941] > ssh: connect to host 172.21.146.184 port 22: con

问题描述

早上来上班,突然发现使用主机的vscode的remote-ssh无法连接上wsl装的子系统(centos7)了,检查子系统运行情况并没有问题,纯粹是vscode连不上它:
子系统运行没有问题

报错提示

查看vscode的报错,关键词基本上是

Failed to parse remote port from server output
port22 connection refused
过程试图写入的管道不存在
  • 1
  • 2
  • 3

错误排查

进入子系统使用ssh localhost命令查看ssh连接情况,确实是Connection refused的状态

# ssh localhost
ssh: connect to host localhost port 22: Connection refused
  • 1
  • 2

但是使用ss -lnt命令查看端口情况,port22是正确打开的
在这里插入图片描述
如果此处没有反应,如下:
在这里插入图片描述
可以运行sshd -t命令进行查错
之前碰到过因为ssh-key未生成而产生的无法正常运行sshd的情况,就是使用这一命令查出来的
在这里插入图片描述
ssh-keygen -A即可
在这里插入图片描述

解决过程

因此考虑SSH服务未安装的情况,进行如下命令

 yum -y install openssh-server
 service sshd start
  • 1
  • 2

重新进行ssh localhost指令,发现已经可以进行ssh连接了
在这里插入图片描述
在vscode中进行再次连接,连接成功了

总结

至今不知道为什么会突然出现这种情况,有可能跟vscode的自动更新有关,否则之前也没有在子系统里安装openssh-server为什么一直可以成功连接呢?
成功连接之后就可以继续使用vscode继续摸鱼了~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/184801
推荐阅读
相关标签
  

闽ICP备14008679号