zoukankan      html  css  js  c++  java
  • SecureCRT无法使用root正常连接Ubuntu 14.0.4.1的解决办法

    问题描述

    通过VirtualBox重新安装了Ubuntu 14.0.4.1 虚拟服务器,在SercureCRT中使用root帐号连接Ubuntu14.0.4.1的时候,提示“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 without-password修改为PermitRootLogin yes,然后保存。

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

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

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

    service ssh restart
  • 相关阅读:
    win7下设置smtp的方法
    win7下怎么安装IIS
    python语法笔记(二)
    python语法笔记(一)
    python 的类变量和对象变量
    mysql使用笔记(四)
    mysql使用笔记(三)
    mysql使用笔记(二)
    windows下重新安装TCP/IP协议栈
    c++程序编码
  • 原文地址:https://www.cnblogs.com/cyyljw/p/8617233.html
Copyright © 2011-2022 走看看