命令“gcloud compute ssh”和“ssh”之间的区别

时间:2016-03-17 13:33:19

标签: linux ssh google-compute-engine google-cloud-platform

gcloud compute ssh命令和“只是”ssh命令之间究竟有什么区别?

我观察到即使这样我也可以使用gcloud compute ssh在两个实例之间轻松连接,我无法使用ssh命令。但是,手动设置ssh-keys后,ssh命令工作正常。但是gcloud命令不应该处理密钥管理吗?如果使用gcloud设置一次,为什么ssh命令无法正常工作

工作正常:

gcloud compute ssh instance_2
gcloud compute shh instance_1

如果不手动设置ssh-keys,则无效:

ssh instance_2
shh instance_1

这个问题来自我遇到的另一个问题,这让我疯了好几天:OpenMPI: Permission denied error while trying to use mpirun

2 个答案:

答案 0 :(得分:6)

gcloud compute ssh将密钥对安装为〜/ .ssh / google_compute_engine [.pub]。 ssh默认使用〜/ .ssh / identity [.pub]。

您可以将Google密钥对复制为默认名称:

$ cp ~/.ssh/google_compute_engine ~/.ssh/identity
$ cp ~/.ssh/google_compute_engine.pub ~/.ssh/identity.pub

或者您可以指定在调用ssh时使用的私钥:

$ ssh -i ~/.ssh/google_compute_engine instance_name

答案 1 :(得分:4)

专用的google命令gcloud compute ssh instance基本上使用了引擎盖下的标准ssh,但在顶部做了一些魔术,例如安装钥匙。在这个问题的答案中,它得到了很好的解释: How to get the ssh keys for a new Google Compute Engine instance?