美文网首页
centos 7修改密钥登陆为密码登录

centos 7修改密钥登陆为密码登录

作者: IntoTheVoid | 来源:发表于2020-06-29 16:41 被阅读0次

    1、需要用pem文件连接到centos系统中,
    xshell 使用pem文件登录:http://blog.csdn.net/gsying1474/article/details/50158817

    2、修改root密码
    sudo passwd root
    然后输入两次密码

    3、修改centos登录方式为密码登录
    打开配置文件 /etc/ssh/sshd_config (ubuntu 为/etc/ssh/sshd_config),设置如下几个参数:

    PermitRootLogin yes
    PubkeyAuthentication no (也可用#号注释)
    PasswordAuthentication yes
    

    4、重启sshd服务
    systemctl restart sshd or service sshd restart

    相关文章

      网友评论

          本文标题:centos 7修改密钥登陆为密码登录

          本文链接:https://www.haomeiwen.com/subject/rhfafktx.html