如何从我的本地计算机访问GCP的VM实例?

时间:2017-12-22 13:40:36

标签: google-cloud-platform cloud ubuntu-16.04 gcp

我的本​​地计算机正在运行Ubuntu 16.04,我在Google Cloud Platform上创建了一个VM实例,也就是Ubuntu 16.04。如何从我自己的笔记本电脑终端连接到此虚拟机?我希望在我的虚拟机上安装anaconda等,以便如何从本地机器的终端访问VM终端?'

3 个答案:

答案 0 :(得分:1)

要从本地计算机连接到GCP实例,您需要设置 gcloud命令行工具,然后在本地计算机中选择默认区域和区域。这可能有所帮助 https://cloud.google.com/compute/docs/instances/connecting-to-instance

答案 1 :(得分:0)

  1. 确保使用PuttyGen生成SSH密钥对(公共+私有)。
  2. 将公钥内容粘贴到SSH密钥部分的GCE中。 enter image description here

  3. 打开Putty并输入会话详细信息(用户名@instanceip),不要忘记在Auth部分添加私钥路径。 enter image description here

  4. 如果您希望采用更基本的方法,那么您需要以与下面类似的方式使用ssh命令,但不能在注册私钥之前使用。

    ssh remote_username@remote_host
    

答案 2 :(得分:0)

用于使用ssh命令

  1. 如果没有,请创建您的ssh密钥
  2. 将SSH密钥的内容添加到SSH密钥下的实例设置中
  3. ssh -i ~/.ssh/<filename without .pub one> <your email without @gmail.com>@<your instance ip>

用您的实际详细信息替换<content>