美文网首页
Linux 配置SSH通过pubKey登录并禁用root密码登录

Linux 配置SSH通过pubKey登录并禁用root密码登录

作者: FicowShen | 来源:发表于2018-08-23 19:00 被阅读91次
    # 编辑SSH服务配置
    vim /etc/ssh/sshd_config
    
    # 允许root登录,但是禁止root密码登录
    PermitRootLogin prohibit-password
    
    # 通过RSA认证
    RSAAuthentication yes
    
    # 允许pubKey(id_rsa.pub)登录
    PubkeyAuthentication yes
    
    # key信息列表所在位置
    AuthorizedKeysFile      .ssh/authorized_keys
    

    当然,还要注意文件的权限:

    chmod 700 ~/.ssh
    chmod 600 ~/.ssh/authorized_keys 
    

    然后,将个人的SSH Key加入到 .ssh/authorized_keys文件中。
    这个文件,一般在当前用户的主目录下,也就是~/.ssh/authorized_keys。

    # 重启SSH服务
    service sshd restart
    

    相关文章

      网友评论

          本文标题:Linux 配置SSH通过pubKey登录并禁用root密码登录

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