一、SSH服务禁止使用密码登录
No supported authentication methods available (server sent: publickey,gssapi
解决办法
1.进入服务器 执行 cat /etc/ssh/sshd_config查看SSH服务配置
cat /etc/ssh/sshd_config
# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no
PasswordAuthentication no
2.执行命令 vi /etc/ssh/sshd_config,按下 i 编辑SSH服务配置文件,将参数 PasswordAuthentication 设置为 yes,或者在 PasswordAuthentication 参数前添加井号(#),按下 Esc 退出编辑模式,并输入 :wq 保存退出。
# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no
PasswordAuthentication yes
4.重启SSH服务
systemctl restart sshd
二、Linux SSH Access denied(拒绝访问)
问题描述:Linux 系统默认就是禁止远程登录的。
解决办法
1.需要修改系统设置,普通用户会出现没有权限,所以在超级管理员下操作。
2.安装 openssh-server
yum -y install openssh-server
3.检查下 SSH 版本
ps -e |grep ssh
如下图即表示安装成功
4.编辑配置文件: 修改 PermitRootLogin 为 yes
vim /etc/ssh/sshd_config
文章来源:https://www.toymoban.com/news/detail-532342.html
5.退出编辑:
按下 ‘Esc’ 键,输入" :wq " ,回车便可。
6.重启 SSH:文章来源地址https://www.toymoban.com/news/detail-532342.html
systemctl restart sshd
到了这里,关于SSH 无法连接远程服务器的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!