美文网首页
Linux配置SSH公钥密钥

Linux配置SSH公钥密钥

作者: bullion | 来源:发表于2018-09-14 16:34 被阅读0次

    1)检查是否安装了ssh

    2)检查是否启动了sshd进程

    $>ps -Af | grep sshd

    3)在client侧生成公私秘钥对。

    $>ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa

    4)生成~/.ssh文件夹,里面有id_rsa(私钥) + id_rsa.pub(公钥)

    5)追加公钥到~/.ssh/authorized_keys文件中(文件名、位置固定)

    $>cd ~/.ssh

    $>cat id_rsa.pub >> authorized_keys

    6)修改authorized_keys的权限为644.

    $>chmod 644 authorized_keys

    7)测试

    $>ssh localhost

    8)关闭防火墙

    # 查看防火墙状态

    service iptables status

    # 停止防火墙

    service iptables stop

    # 启动防火墙

    service iptables start

    # 重启防火墙

    service iptables restart

    # 永久关闭防火墙

    chkconfig iptables off

    # 永久关闭后重启

    chkconfig iptables on

    相关文章

      网友评论

          本文标题:Linux配置SSH公钥密钥

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