1.使用 git 客户的生成公私钥:id_rsa、id_rsa.pub1.1设置Git的user name和email:$ git config --global user.name "xxx"$ git config --global user.email "xxx.mail@xxx.com"12 ...
分类:
其他好文 时间:
2019-10-12 19:04:51
阅读次数:
133
生成密钥 默认密钥 ssh-keygen -t rsa -C zcw1994@live.com 生成自定义文件名密钥 ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -C zcw1994@live.com ... ...
分类:
其他好文 时间:
2019-10-07 19:18:14
阅读次数:
164
一 创建秘钥 1 Macbook $ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key ($HOME/.ssh/id_rsa): Enter passphrase ( ...
分类:
其他好文 时间:
2019-10-03 23:51:15
阅读次数:
604
1 使用码云的git仓库保存代码 https://gitee.com/ 首先建立代码库-->然后复制本地的用户主目录下的.ssh/id_rsa.pub文件的内容粘贴进去-->生成公钥; 然后把本地代码关联到mayun上 ...
分类:
其他好文 时间:
2019-10-03 00:59:17
阅读次数:
85
VScode远程连接服务器 1.远程服务器安装rmate,在远程服务器上执行以下操作 2.在本地安装openssh openssh "下载地址" 免密登录 在本地cmd窗口中执行 将生成的秘钥id_rsa.pub上传到服务器家目录下,然后执行 如果没有authorized_keys文件则自己创建 3 ...
分类:
其他好文 时间:
2019-10-01 20:17:55
阅读次数:
119
#ssh-keygen#ssh-copy-id -i ~/.ssh/id_rsa.pub sysadm01@192.168.1.2 ...
分类:
其他好文 时间:
2019-10-01 16:39:07
阅读次数:
98
本文链接:https://blog.csdn.net/hochoy/article/details/80749309linux系统配置免密码的方式: 1:ssh-keygen -t rsa ssh-keygen -t dsa 生成密钥 2:ssh-copy-id -i ~/.ssh/id_rsa.p ...
分类:
系统相关 时间:
2019-09-30 14:54:45
阅读次数:
145
repo init -u ssh://wangxy@git.fd565.com:29418/Product/F3/Lichee.git rm .repo/ -rf rm ~/.ssh/* -rf ssh-keygen cat ~/.ssh/id_rsa.pu repo sync -j8 —————— ...
分类:
其他好文 时间:
2019-09-26 11:18:16
阅读次数:
104
之前我们利用SSH转发建立起了SSH的远程转发,接下来制作SSH证书配置免密登陆。 登陆服务器命令行,生成证书。 还需要用WinSCP将私钥/root/.ssh/id_rsa文件下载到本地。 Putty无法识别ssh-keygen生成的私钥,需要对id_rsa文件进行格式转换。打开PuTTY-gen ...
分类:
其他好文 时间:
2019-09-22 23:50:01
阅读次数:
153
同一台电脑关于多个 管理 笔者之前为电脑中的homestead虚拟机配置过id_rsa,但现在因为想在github上搭建基于hexo的博客,所以需要配置github的ssh key,因此产生需要同一台机器上使用多个SSH key 切换的需求. 使用环境 window7系统 环境 git软件(携带的b ...
分类:
其他好文 时间:
2019-09-19 16:11:56
阅读次数:
97