首页  编辑  

GCP用户默认密码是多少?

Tags: /计算机文档/软件应用技巧/   Date Created:
google cloud platform - How to connect to GCP VM instance with password using SSH? - Stack Overflow

GCP默认是禁用了密码登录,只允许ssh key 登录。
首先要修改 /etc/ssh/sshd_config 把 
PasswordAuthentication no 改成   PasswordAuthentication yes
改完保存,然后重启 ssh: sudo service ssh restart
    然后使用以下指令给你的gcp 云主机ssh登录用户设定密码:
    sudo passwd ssh_user_name
    设定好密码就可以了。