1. 安装git,从程序目录打开 "Git Bash"2. 键入命令:ssh-keygen -t rsa -C "email@email.com""email@email.com"是github账号3. 提醒你输入key的名称,输入如id_rsa4. 在C:\Documents and Settin...
第一步创建本地公钥秘钥对ssh-keygen -t rsa //创建ssh公钥私钥对,通过rsa加密接下要要求输入--》储存文件的位置 /Users/root/.ssh/id_rsa --》密码 --》再次输入密码将.ssh文件权限设为700将id_rsa文件的权限设为...
分类:
其他好文 时间:
2015-10-21 12:29:21
阅读次数:
160
① ssh -keygen -C "youremail" ->查看~/.ssh/② ssh -T git@github.com 测试下面为转载:http://blog.163.com/zhou_411424/blog/static/197362156201281725033556/ubuntu下gi...
分类:
其他好文 时间:
2015-10-21 10:32:06
阅读次数:
227
ssh-keygen生成密钥1.ssh-keygen-trsa可以加密和签名rsa只能加密不能签名2.ssh-copy-id-i/root/.ssh/id_rsa.pubUSERNAME@HOST公钥-i指定密钥文件单向的登录命令执行sshUSERNAME@IP“COMMAND”返回到本地主机
分类:
其他好文 时间:
2015-10-20 11:56:24
阅读次数:
190
小结:显示隐藏文件,在系统文件中找到 .ssh文件夹,打开终端,输入ssh-keygen -t rsa -C "401610771@qq.com"之后回车,得到 ssh 中的两个文件,将其中.puh 拖入 sublime 得到公钥,在 coding 中新建项目输入公钥,得到 SSH 和 HTTPS....
分类:
其他好文 时间:
2015-10-16 16:42:37
阅读次数:
153
Git生成密钥,出现ssh-keygen不是内部或外部命令,解决方法如下:原因是ssh-keygen没有加入Path环境变量,系统就执行不了这个命令,解决步骤:点击“计算机”,搜索ssh-keygen,复制所在路径;右击“计算机”,属性-->高级系统设置-->环境变量-->系统变量,找到Path变量...
分类:
其他好文 时间:
2015-10-15 18:03:58
阅读次数:
3324
在前一篇文章的拓扑中将两台Director去掉后进行以下操作。两台服务器上ssh互信ssh-keygen-trsa-f~/.ssh/id_rsa-P‘‘ssh-copy-id-i~/.ssh/id_rsa.pubroot@192.168.1.3yum-yinstallpacemaker#在centos6.4上,yum安装pacemaker时会自动安装corosync在Server1上:1.改配置文件:cd/e..
分类:
其他好文 时间:
2015-10-13 19:22:41
阅读次数:
182
平台:win7;github本地目录在C:\Users\ZY\Documents\GitHub。1、添加ssh-key到github服务器上: a)、生成ssh-key:C:\Users\ZY\Documents\GitHub> ssh-keygen -t rsa -C "you-name"。一路....
分类:
其他好文 时间:
2015-10-13 16:46:35
阅读次数:
247
以root用户进行部署,python源也可以使用 http://mirrors.aliyun.com/pypi/simple/ 修改系统 更改SElinux的配置文件 /etc/selinux/config,SELINUX=disabled ssh-keygen ~/.ssh/authorized_...
分类:
其他好文 时间:
2015-10-12 20:53:25
阅读次数:
187
需求:公司内部使用自己电脑,回家需要使用另一台电脑,所以想时时备份公司用的电脑中文件、代码到服务器上,回家就可以用啦1 无密码使用scp(1)第一步:生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"[user1@rh user1]$ ssh-keygen -t rs...
分类:
系统相关 时间:
2015-10-09 12:07:17
阅读次数:
364