Google Cloud 设置ssh远程连接

Google Cloud 设置ssh远程连接

其实Google Cloud自带的ssh用着挺不错的,但是想着google系的产品随时有可能被墙,这边分享下如何配置Google VPS使其支持远程ssh

  • 使用自带ssh登录
  • 切换角色为root
    sudo -i
  • 编辑/etc/ssh/sshd_config文件
    将PermitRootLogin no 改为 PermitRootLogin yes

    将PasswordAuthentication no 改为PasswordAuthentication yes
  • 设置root密码
    passwd xxxx 
    
    注: xxxx为你要设置的密码
  • 重启服务
    service sshd restart 
    或 reboot
  • 打开本地ssh连接工具连接即可

你可能感兴趣的:(散记)