谷歌云设置ROOT用户以及允许第三方SSH登录
谷歌云在没有设置的情况下是不允许第三方SSH工具登陆的,如果你要是想用第三方SSH工具登陆,就必须要进行下面的设置,具体方法如下:
一、设置谷歌云ROOT密码
1、先选择从浏览器打开SSH连接服务器
2、切换到root帐户
sudo -i
3、设置root密码
passwd
然后会要求输入新密码,然后再重复一次密码,输入密码的时候不会显示出来,所以直接输入密码,然后回车,再然后重复输入密码回车
二、开启SSH权限
CentOS和Debian通用,输入以下两条命令
[prism lang=""]sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config[/prism]
Ubuntu系统,输入以下两条命令
[prism lang=""]sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config[/prism]
三、重启服务器
reboot
服务器重启后就可以用第三方SSH工具登陆谷歌云了。
谷歌云推荐以下工具连接:FinalShell SSH工具