创建ssh-key

ssh setting

su - oracle
1.创建rsa key or dsa key
ssh-keygen -t rsa

ssh-keygen -t dsa

##输入后,会提示创建.ssh/id_rsa、id_rsa.pub的文件,其中第一个为密钥,第二个为公钥。过程中会要求输入密码,为了ssh访问过程无须密码,可以直接回车


[root@localhost .ssh]# ls ~/.ssh/
id_rsa  id_rsa.pub  known_hosts


2.

cat id_rsa.pub>>authorized_keys 

or

cat id_dsa.pub>>authorized_keys

3.将公钥复制到被管理机器上面

authorized_key  scp到你要ssh到的机器上的相同目录下。/home/username/.ssh/

.ssh 不存在的话可以手动创建,注意创建后的用户权限。



<think>我们正在回答用户关于在Git中生成和配置SSH-Key的问题。根据引用内容,我们可以总结出以下步骤:1.生成SSHKey:使用命令`ssh-keygen-trsa-C"your_email@example.com"-f~/.ssh/filename`其中:-`-trsa`表示使用RSA算法-`-C`后面是注释,一般用邮箱-`-f`指定生成的文件名和路径(可选,如果不指定,则使用默认文件名id_rsa)2.如果配置多个SSHKey(例如同时使用GitHub和Gitee),则需要为每个平台生成不同的文件,避免覆盖。例如:-GitHub:`ssh-keygen-trsa-C"your_email@example.com"-f~/.ssh/github_id_rsa`-Gitee:`ssh-keygen-trsa-C"your_email@example.com"-f~/.ssh/gitee_id_rsa`3.将生成的公钥(.pub文件内容)添加到对应的Git托管平台(如GitHub、Gitee等)的SSHKey设置中。4.配置~/.ssh/config文件(可选,当有多个SSHKey时需要配置):如果没有config文件,可以创建一个。然后为每个平台配置一个Host,指定对应的私钥文件。示例:```#GitHubHostgithub.comHostNamegithub.comUsergitIdentityFile~/.ssh/github_id_rsa#GiteeHostgitee.comHostNamegitee.comUsergitIdentityFile~/.ssh/gitee_id_rsa```5.测试连接:使用命令`ssh-Tgit@github.com`测试GitHub,`ssh-Tgit@gitee.com`测试Gitee。6.设置全局的用户名和邮箱(如果还没有设置):```gitconfig--globaluser.name"YourName"gitconfig--globaluser.email"your_email@example.com"```注意:在生成SSHKey的过程中,会提示输入密码(passphrase),可以设置也可以直接回车跳过(但为了安全建议设置)。下面我们将详细解释每个步骤。</think>### 如何在 Git 中生成和配置 SSH-Key #### 步骤 1:生成 SSH-Key 1. **打开终端** Windows 用户使用 Git Bash,Linux/macOS 使用系统终端。 2. **执行生成命令** ```bash ssh-keygen -t rsa -C "your_email@example.com" ``` - `-t rsa`:指定 RSA 加密算法 - `-C`:添加注释(建议用邮箱标识) - 按提示操作: - 输入保存路径(默认 `~/.ssh/id_rsa`) - 设置密码(可选,直接回车跳过) 3. **生成结果** - 私钥:`~/.ssh/id_rsa`(需保密) - 公钥:`~/.ssh/id_rsa.pub`(需上传到 Git 平台)[^1][^3] --- #### 步骤 2:配置多个 SSH-Key(可选) 当同时使用 GitHub、Gitee 等平台时: 1. **为每个平台生成独立 Key** ```bash # GitHub 专用 ssh-keygen -t rsa -C "github@mail.com" -f ~/.ssh/github_id_rsa # Gitee 专用 ssh-keygen -t rsa -C "gitee@mail.com" -f ~/.ssh/gitee_id_rsa ``` 2. **创建配置文件 `~/.ssh/config`** ```bash touch ~/.ssh/config # 新建文件 ``` 添加内容: ```conf # GitHub Host github.com HostName github.com User git IdentityFile ~/.ssh/github_id_rsa # Gitee Host gitee.com HostName gitee.com User git IdentityFile ~/.ssh/gitee_id_rsa ``` 3. **修改文件权限** ```bash chmod 600 ~/.ssh/* # 确保密钥安全 ``` [^1][^2] --- #### 步骤 3:添加公钥到 Git 平台 1. **复制公钥内容** ```bash cat ~/.ssh/id_rsa.pub # 显示并复制全部内容 ``` 2. **粘贴到平台设置** - **GitHub**:`Settings > SSH and GPG keys` - **Gitee**:`设置 > SSH 公钥` - 其他平台类似位置 --- #### 步骤 4:测试连接 ```bash ssh -T git@github.com # 测试 GitHub ssh -T git@gitee.com # 测试 Gitee ``` 成功提示示例: `Hi username! You've successfully authenticated.` --- #### 补充:全局用户配置 ```bash git config --global user.name "Your Name" git config --global user.email "your_email@example.com" ``` 确保提交信息与 SSH-Key 邮箱一致[^4]。 --- ### 常见问题解决 - **权限错误**:运行 `chmod 700 ~/.ssh && chmod 600 ~/.ssh/*` - **连接超时**:检查防火墙或代理设置 - **多个 Key 冲突**:确认 `~/.ssh/config` 配置正确
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值