设置全局gcp vm

时间:2019-08-29 21:20:12

标签: ssh google-cloud-platform virtual-machine google-compute-engine

我需要使用GCP设置虚拟机的帮助,这是我在GCP上的第一台虚拟机

如何设置它,以便具有用户名@IP和密码的任何人都可以登录

即(ssh用户@IP密码)

enter image description here

1 个答案:

答案 0 :(得分:1)

首先,使用gcloud compute ssh VM_NAME或Web ssh(通过在GCP控制台上单击ssh登录到VM。

然后编辑/etc/ssh/sshd_config并将PasswordAuthentication no更改为PasswordAuthentication yes并重新启动sshd服务:systemctl restart sshd

之后,您可以添加用户并授予密码adduser testuser

然后,您可以使用用户名和密码登录到虚拟机:ssh testuser@PUBLIB_IP_OF_VM