使用第三放的工具登录SSH的话,需要进行下面的设置:
一、设置 root 密码
1.先选择从浏览器打开 ssh 连接服务器
2.切换到 root 账号,输入代码
sudo -i
3.设置 root 密码passwd
然后会要求输入新密码,然后再重复一次密码,输入密码的时候不会显示出来,所以直接输入密码,然后回车,再然后重复输入密码回车
二、开启 SSH 权限,推荐使用方法二
方法一
1.修改 SSH 配置文件/etc/ssh/sshd_config
vi /etc/ssh/sshd_config
2.然后再输”i”进入编辑模式i
3.找到以下内容并修改PermitRootLogin yes //默认为 no,需要开启 root 用户访问改为 yes
PasswordAuthentication yes //默认为 no,改为 yes 开启密码登陆
4.修改完成后,再下按 esc 键,然后再输入
:wq
5.重启服务器
reboot
下面是第二种方法:(更加便捷,方便的登录 SSH)
方法二
切换到 ROOT 用户并设置 ROOT 密码(方法一有说明)
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
暂无评论内容