程序员必备小技能:免密码进行SSH连接

简介: 本教材适用于gitlab 和GitHub。 同样最近CSDN推出了基于gitlab的codechina.csdn.net,你赶紧来试试吧!

前言

本教材适用于gitlab 和GitHub。 同样最近CSDN推出了基于gitlab的codechina.csdn.net,你赶紧来试试吧!

I 免密码进行SSH连接

  1. 创建rsa: ssh-keygen -t rsa -b 4096 -C "929118967@qq.com"

    1. 配置config: ➜ .ssh touch config
    2. 使用pbcopy或者ssh-copy-id进行拷贝公钥到对应的远程服务器
tr -d '\n' < ~/.ssh/id_ed25519.pub | pbcopy

➜ .ssh pbcopy < ~/.ssh/qctmac_id_rsa.pub

使用ssh-copy-id进行报备

ssh-copy-id:千万不要把私钥泄漏!只是把公钥(*.pub 文件)复制给远程服务器;

`$ ssh-copy-id -i ~/.ssh/id_rsa_Theos125 root@192.168.2.144
`(IP+默认端口 这里拷贝的是公钥,,如果是指定私钥ssh-copy-id 会自己寻找公钥。)

如果是配置在公司Mac上,记得设置密码,并在更换Mac时移除掉 ~/.ssh/ 目录下的xx_id_rsa/xx_id_rsa.pub

https://kunnan.blog.csdn.net/article/details/120466314

1.1 创建 rsa

ssh-keygen -t rsa -b 4096 -C "929118967@qq.com"

1.2 配置 ssh config

config文件的 语法


Host  别名
HostName: 是目标主机的主机名,也就是平时我们使用ssh后面跟的地址名称。
Port:指定的端口号。
User:指定的登陆用户名。
IdentifyFile:指定的私钥地址。
# Private 192.168.2.125
Host iphone
HostName  192.168.2.125
User root 
IdentityFile ~/.ssh/id_rsa_Theos125

# Private github
Host github.com
HostName  github.com
User git
IdentityFile ~/.ssh/id_rsa

# git clone git@codechina.csdn.net:u011018979/resume.git

Host codechina.csdn.net
HostName  codechina.csdn.net
User git
IdentityFile ~/.ssh/qctmac_id_rsa

1.3 测试连接

➜  csdn ssh -T git@codechina.csdn.net       
Enter passphrase for key '/Users/mac/.ssh/qctmac_id_rsa': 
Welcome to GitLab, @u011018979!

连接iPhone

$ ssh iPhone
root@192.168.2.125's password: 
iPhone:~ root# 


1.4 案例: 配置GitHub SSH keys

Enter ls -al ~/.ssh to see if existing SSH keys are present:

If you don't have an existing public and private key pair, or don't wish to use any that are available to connect to GitHub, then generate a new SSH key.
ssh-keygen -t rsa -b 4096 -C "929118967@qq.com"

添加对应的公钥到对应的远程服务器: .ssh pbcopy < ~/.ssh/qctmac_id_rsa.pub

配置邮箱和用户名: git config --global --edit

在这里插入图片描述

修改 author : git commit --amend --reset-author

效果

II see also

gzh: iOS逆向

使用ssh config配置文件来管理ssh连接

https://help.github.com/articles/connecting-to-github-with-ssh/

目录
相关文章
|
11天前
|
Java 数据库连接 网络安全
JDBC常用特性-SSH隧道连接
JDBC常用特性-SSH隧道连接
|
4月前
|
Ubuntu Shell 网络安全
安装了ubuntu虚拟机后发现shell无法连接 ubuntu开启ssh连接
【8月更文挑战第23天】安装了ubuntu虚拟机后发现shell无法连接
349 6
|
2月前
|
网络安全 数据安全/隐私保护 C++
VS Code 的SSH连接不成功问题分析与解决
VS Code 的SSH连接不成功问题分析与解决
|
4月前
|
网络安全
mac下通过ssh脚本实现免账号密码连接运服务器
mac下通过ssh脚本实现免账号密码连接运服务器
55 3
|
4月前
|
监控 网络安全 数据安全/隐私保护
Mac服务器ssh连接工具
Mac服务器ssh连接工具
132 2
|
4月前
|
存储 安全 算法
如何使用 PuTTY 创建 SSH 密钥以连接到 VPS
如何使用 PuTTY 创建 SSH 密钥以连接到 VPS
87 2
|
4月前
|
网络安全 数据安全/隐私保护
VSC通过 SSH 连接到远程服务器时,每次都需要输入密码
VSC通过 SSH 连接到远程服务器时,每次都需要输入密码
1200 0
|
jenkins 网络安全 持续交付
|
1月前
|
监控 Ubuntu Linux
使用VSCode通过SSH远程登录阿里云Linux服务器异常崩溃
通过 VSCode 的 Remote - SSH 插件远程连接阿里云 Ubuntu 22 服务器时,会因高 CPU 使用率导致连接断开。经排查发现,VSCode 连接根目录 ".." 时会频繁调用"rg"(ripgrep)进行文件搜索,导致 CPU 负载过高。解决方法是将连接目录改为"root"(或其他具体的路径),避免不必要的文件检索,从而恢复正常连接。
|
6月前
|
安全 Linux Shell
Linux中SSH命令介绍
Linux中SSH命令介绍
161 2