Gitee配置ssh公匙

简介: Gitee配置ssh公匙

1.生成添加ssh公匙

  1. 在GitBash界面按照如下命令生成公匙
ssh-keygen -t rsa -C "xxxxx@xxxxx.com"

注意:

  1. 这里的 xxxxx@xxxxx.com 只是生成的 sshkey 的名称,并不约束或要求具体命名为某个邮箱。
  2. 现网的大部分教程均讲解的使用邮箱生成,其一开始的初衷仅仅是为了便于辨识所以使用了邮箱。
  3. 项目组规范要求,使用个人邮箱命名sshkey的名称。
  1. 按照提示完成三次回车,即可生成 ssh key。
  2. 通过查看 ~/.ssh/id_rsa.pub文件内容,获取到你的 public key。

    ~/:当前用户文件夹
    Linux:/home/{userName}
    Windows:C:\Users{userName}

  3. 复制id_rsa.pub文件中中生成的sshkey
  4. 在 [个人用户] -> [设置] -> [安全设置] -> [ssh公匙] 页面添加sshkey
  5. 将复制的sshkey添加到公匙输入框中,设置标题,确定即可添加公匙

2.验证ssh公匙

  1. 打开 GitBase 界面
  2. 输入ssh -T git@gitee.com

首次使用需要确认并添加主机到本机SSH可信列表。
若返回 Hi XXX! You've successfully authenticated, but Gitee.com does not provide shell access. 内容,则证明添加成功。

相关文章
|
3月前
|
安全 网络协议 Shell
Github代码仓库SSH配置流程
这篇文章是关于如何配置SSH以安全地连接到GitHub代码仓库的详细指南,包括使用一键脚本简化配置过程、生成SSH密钥对、添加密钥到SSH代理、将公钥添加到GitHub账户以及测试SSH连接的步骤。
75 0
Github代码仓库SSH配置流程
|
3月前
|
网络安全 开发工具 git
拉取 gitee 代码,配置SSH,Please make sure you have the correct access rights
拉取 gitee 代码,配置SSH,Please make sure you have the correct access rights
68 1
|
3月前
|
网络安全 Windows
在Windows电脑上启动并配置SSH服务
在Windows电脑上启动并配置SSH服务
684 0
|
3月前
|
Ubuntu Shell 网络安全
【Ubuntu】配置SSH
【Ubuntu】配置SSH
84 0
|
3月前
|
安全 Linux 网络安全
在Linux中,如何配置SSH以确保远程连接的安全?
在Linux中,如何配置SSH以确保远程连接的安全?
|
3月前
|
安全 Linux Shell
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
184 0
|
网络安全
|
网络安全 Linux 数据安全/隐私保护
不能成功配置ssh信任,提示Agent admitted failure to sign using the key.
不能成功配置ssh信任,提示Agent admitted failure to sign using the key. 问题现象:      做完信任之后要需要输密码: [grid@db01 .
1508 0
|
网络安全
配置多台机器SSH相互通信信任
1.5台机器执行 ssh-keygen [root@sht-sgmhadoopnn-01 ~]# ssh-keygen Generating public/private rsa key pair.
1646 0

相关实验场景

更多