当前位置:   article > 正文

无法建立SSH链接和Password Authentication Failed,Please verify that the username and password are correct解决_ssh authentication failed

ssh authentication failed

因为我的Ubuntu中未安装ssh服务,终端下运行命令:

sudo apt-get install openssh-server

之后重启一下ssh服务:

sudo service  sshd  restart


Password Authentication Failed,Please verify that the username and password are correct.

解决办法:
1、在虚拟机终端使用root帐号登录,编辑/etc/ssh/sshd_config文件

vi /etc/ssh/sshd_config


2、找到Authentication配置部分,将PermitRootLogin xxx-password修改为PermitRootLogin yes,然后保存。

# Authentication:
LoginGraceTime 120
#PermitRootLogin xxx-password
PermitRootLogin yes
StrictModes yes

说明:sshd_config是ssh的配置文件,其中有一个选项 PermitRootLogin 用来配置是否允许root用户登录,默认的xxx-password表示不允许使用密码进行全登录认证,yes则是允许root登录。


3、重启ssh服务,既可以通过SercureCRT正常连接服务器

service ssh restart

 
————————————————
版权声明:本文为CSDN博主「程序课代表」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_34508943/article/details/90695089

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

闽ICP备14008679号