如何解决Linux不能连接ssh

如何解决Linux不能连接ssh,第1张

先看看sshd功能是否已经开启

bash-4.2# service sshd status

Redirecting to /bin/systemctl status sshd.service

â— sshd.service - OpenSSH server daemon

Loaded: loaded (/usr/lib/systemd/system/sshd.serviceenabledvendor preset: enabled)

Active: active (running) since Wed 2017-04-05 08:17:57 CST2 weeks 4 days ago

Docs: man:sshd(8)

man:sshd_config(5)

Main PID: 1179 (sshd)

CGroup: /system.slice/sshd.service

└─1179 /usr/sbin/sshd -D

Apr 11 12:59:20 localhost.localdomain sshd[27380]: Accepted password for root...

Apr 11 23:34:12 localhost.localdomain sshd[29006]: Accepted password for root...

Apr 14 16:20:06 localhost.localdomain sshd[18382]: Accepted password for root...

Apr 18 00:33:43 localhost.localdomain sshd[16355]: Accepted password for root...

Apr 18 23:16:36 localhost.localdomain sshd[26846]: Accepted password for root...

Apr 22 19:45:57 localhost.localdomain sshd[21046]: pam_unix(sshd:auth): authe...

Apr 22 19:45:57 localhost.localdomain sshd[21046]: pam_succeed_if(sshd:auth):...

Apr 22 19:45:59 localhost.localdomain sshd[21046]: Failed password for root f...

Apr 22 19:46:01 localhost.localdomain sshd[21046]: Accepted password for root...

Apr 23 19:01:00 localhost.localdomain sshd[31780]: Accepted password for root...

Hint: Some lines were ellipsized, use -l to show in full.

1、 首先,要确保CentOS7安装了 openssh-server,在终端中输入 yum list installed | grep openssh-server

此处显示已经安装了 openssh-server,如果又没任何输出显示表示没有安装 openssh-server,通过输入 yum install openssh-server

来进行安装openssh-server

2、 找到了 /etc/ssh/ 目录下的sshd服务配置文件 sshd_config,用Vim编辑器打开

将文件中,关于监听端口、监听地址前的 # 号去除

然后开启允许远程登录

最后,开启使用用户名密码来作为连接验证

保存文件,退出

3、 开启 sshd 服务,输入 sudo service sshd start

检查 sshd 服务是否已经开启,输入ps -e | grep sshd

或者输入netstat -an | grep 22 检查 22 号端口是否开启监听

连不上可能有一下几种情况:

1你的Linux服务器没有安装OpenSSH,所以他可以访问其他服务器,而其他服务器不能连接它

2你的Linux服务器使用的IP是局域网IP,那么要想连接上它,你的客户端也得是在同一局域网内

3如果你的Linux 服务器使用的是公网IP(就是哪怕在外省也能ping 的通),那么就要检查你的服务器的网路是否正常,防火墙过滤规则,以及端口是否是非常用端口

4一般,我遇到的多是第一种情况和第二种情况,你可以具体检查一下


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7469313.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存