进入谷歌云实例面板

进入谷歌云实例面板连接ssh

切换到root角色

1
sudo -i

修改SSH配置文件/etc/ssh/sshd_config

1
vi /etc/ssh/sshd_config

修改PermitRootLogin和PasswordAuthentication为yes

1
2
3
4
5
# Authentication:
PermitRootLogin yes //默认为no,需要开启root用户访问改为yes

# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes //默认为no,改为yes开启密码登陆

给root用户设置密码

1
passwd root

重启SSH服务使修改生效

1
/etc/init.d/ssh restart

登录

在xshell中,直接使用root账号密码登录。