0

我已经在我的 Windows 上安装了 Cygwin 终端。我尝试使用以下命令克隆我们在 linux 服务器上的 git 存储库:

$ git clone ssh://some.server.com/somename
Cloning into 'somename'...
ituser3@some.server.com's password:

我知道服务器中有 SSL 证书。

没有密码怎么连接?它如何考虑服务器上的证书?

4

1 回答 1

1

从mathias kettner 的教程中复制并粘贴

首先以用户 a 登录 A 并生成一对认证密钥。不要输入密码:

a@A:~> ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/a/.ssh/id_rsa): 
Created directory '/home/a/.ssh'.
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/a/.ssh/id_rsa.
Your public key has been saved in /home/a/.ssh/id_rsa.pub.
The key fingerprint is:
3e:4f:05:79:3a:9f:96:7c:3b:ad:e9:58:37:bc:37:e4 a@A

现在使用 ssh 在 B 上以用户 b 的身份创建一个目录 ~/.ssh。(该目录可能已经存在,这很好):

a@A:~> ssh b@B mkdir -p .ssh
b@B's password: 

最后将 a 的新公钥附加到 b@B:.ssh/authorized_keys 并最后一次输入 b 的密码:

a@A:~> cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
b@B's password: 

从现在开始,您可以从 A 以 b 身份登录 B,而无需密码:

a@A:~> ssh b@B hostname
B
于 2013-02-14T13:09:07.097 回答