google云实例用工具链接

1、在谷歌云后台点击ssh以非root用户进入后输入:

$ sudo -i

2、进入root账户、然后输入下面命令设置root密码。

$ passwd root

3、输入下面命令修改SSH配置文件/etc/ssh/sshd_config,修改完成后保存退出。

$ vi /etc/ssh/sshd_config

找到PermitRootLogin项,把“no”改为“yes”

进入root账户、然后输入下面命令设置root密码。

# Authentication:
LoginGraceTime 120 
PermitRootLogin yes //默认为no,需要开启root用户访问改为yes 
StrictModes yes

添加PasswordAuthentication项开启密码登陆,内容如下

# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes

4、reboot 重启

如果不能保存 可以使用 :w! 强制保存

你可能感兴趣的:(个人理解)