SSH工具连接谷歌云VPS实例
一、修改ssh配置文件并设置root密码1.首先使用Google Cloud SSH登录VPS2.切换到root账户sudo-i3.编辑ssh配置文件vim/etc/ssh/sshd_config4.修改以下内容即可按键盘【i】进入编辑,按【Esc】退出编辑,再输入:wq保存并退出5.重启sshservice sshd restart6.为root账户设置密码passwd输入密码输入密码的时候不会
一、修改ssh配置文件并设置root密码
1.首先使用Google Cloud SSH登录VPS
2.切换到root账户
sudo -i
3.编辑ssh配置文件
vim /etc/ssh/sshd_config
4.修改以下内容即可
按键盘【i】进入编辑,按【Esc】退出编辑,再输入:wq
,回车保存并退出
具体信息提示:
vim /etc/ssh/sshd_config
需要修改的配置项目如下,在32行和56行:
PermitRootLogin yes
PasswordAuthentication yes
若使用centos则执行
vim /etc/ssh/sshd_config
修改
PermitRootLogin yes
PasswordAuthentication yes
保存并退出vim
执行重启服务器的操作
reboot
即可生效,并且无需再执行/etc/init.d/ssh restart这个命令
5.重启ssh
/etc/init.d/ssh restart
6.为root账户设置密码
passwd
输入密码
输入密码的时候不会显示出来,所以直接输入密码,然后回车,再然后重复输入密码回车
确认密码再输入一次
设置成功
二、用shell工具登录谷歌云实例
1.安装Mobaxterm连接工具
点击下载Mobaxterm下载完成后直接安装就好
2.打开Mobaxterm软件连接服务器
拓展
可以用下面的命令改配置文件,然后改下密码,重启一下系统。
CentOS和Debian通用
sed-i’s/PermitRootLogin no/PermitRootLogin yes/g’/etc/ssh/sshd_config
sed-i’s/PasswordAuthentication no/PasswordAuthentication yes/g’/etc/ssh/sshd_config
Ubuntu系统
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
重启服务器
reboot
更多推荐
所有评论(0)