SSH 无法连接远程服务器

一、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(拒绝访问)

SSH 无法连接远程服务器_第1张图片
问题描述:Linux 系统默认就是禁止远程登录的。

解决办法

1.需要修改系统设置,普通用户会出现没有权限,所以在超级管理员下操作。
2.安装 openssh-server

yum -y install openssh-server

3.检查下 SSH 版本

ps -e |grep ssh

如下图即表示安装成功
SSH 无法连接远程服务器_第2张图片

4.编辑配置文件: 修改 PermitRootLogin 为 yes

vim /etc/ssh/sshd_config

SSH 无法连接远程服务器_第3张图片

5.退出编辑:
按下 ‘Esc’ 键,输入" :wq " ,回车便可。
6.重启 SSH:

systemctl restart sshd

你可能感兴趣的:(Linux,linux,ssh)