用ssh工具连接谷歌云

  • Post author:
  • Post category:其他



谷歌云创建VM实例之后是不能够使用shell工具登录的,必须开启shell登录才能够登录


修改方式

//切换到root角色
sudo -i

//修改配置文件
vi /etc/ssh/sshd_config
#LoginGraceTime 2m
PermitRootLogin yes

# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes

修改成功之后保存 :wq

重启服务器

就可以使用ssh工具登录root账户



版权声明:本文为xie3480469原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。