Ju Zi's blog

Back

安装ssh-keygen#

  • Mac或者Linux:一般都自带了SSH Client,所以也自带了ssh-keygen,因此无需额外安装。

  • Windows:最简单的方法就是下载Windows版的Git客户端,因为它自带了ssh-keygen

所以如果你正在用Windows,而又没有安装Git,最快的办法就是找一台Linux服务器去上面生成一下再Download下来。

步骤#

  1. 打开命令行
  2. 输入命令:
ssh-keygen -t ed25519 -C "your_email@example.com"
bash

其中ed25519可替换rsa,例如:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
bash

-C选项代表指定注释内容,一般使用邮件作为注释,该注释会记录在公钥中,方便在服务器上进行识别。若不加-C "your_email@example.com,也会自动以用户名@主机名的格式生成注释。

Github从2022年3月15日起停止支持了dsa类型的密钥访问,如果你要用该密钥来访问Github,就不要生成dsa类型的。

  1. 根据提示,输入生成位置
Generating public/private ed25519 key pair.
Enter file in which to save the key (/c/Users/user/.ssh/id_ed25519):
plaintext

如果不做修改(直接按Enter),默认会生成到用户目录下的**.ssh**文件夹下的id_xxx文件,xxx代表密钥类型。 4. 根据提示,输入密码

> Enter passphrase (empty for no passphrase): 
> Enter same passphrase again: 
plaintext

设置密码后,每次使用密钥时都需要输入密码后才能使用,如果不设置密码,直接按两次Enter即可。

  1. 找到生成的密钥文件 文件会出现在第3步中指定的位置,xxx.pub为公钥,存放在服务器上;xxx为私钥,存放在自己电脑上,可以连接有对应公钥的服务器。

参考:https://docs.github.com/zh/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

参考:https://docs.gitlab.com/ee/user/ssh.html#generate-an-ssh-key-pair

生成SSH密钥
https://astro-pure.js.org/blog/os/linux/generate-ssh-key
Author Ju Zi
Published at May 20, 2020
Comment seems to stuck. Try to refresh?✨