美文网首页
在Windows下清除ssh-key私钥访问密码

在Windows下清除ssh-key私钥访问密码

作者: SneakyJack | 来源:发表于2018-01-20 12:03 被阅读0次

    之前在配置Github时候,给本地生成的ssh-key加上了访问密码,因为所有ssh连接均采用了同一个key,给之后访问带来了很多的不便,查询相关资料找到取消该访问密码的方式。

    首先,需要打开git-bash,(注意这里是不能使用Windows系统自带的终端或者powershell)输入命令

    $ ssh-keygen -p
    
    Enter file in which the key is(/c/Users/YourUserName/.ssh/id_rsa):
    

    命令会自动定位到默认生成的私钥,输入原始密码,在提示输入新密码时候,直接2次回车确认即可。


    本文首发于在Windows下清除ssh-key私钥访问密码 | Y.Shao's Blog
    转载需注明出处。

    相关文章

      网友评论

          本文标题:在Windows下清除ssh-key私钥访问密码

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