0

0

启动sshd时,报“Could not load host key”错

php中文网

php中文网

发布时间:2016-06-13 08:39:03

|

1420人浏览过

|

来源于php中文网

原创

Magician
Magician

Figma插件,AI生成图标、图片和UX文案

下载

启动sshd时,报“could not load host key”错

现象:启动sshd服务时,虽看似服务启动成功,但客户端并不能连接上sshd服务器端。
如下:
  1. [root@aefe8007a17d ~]# /usr/sbin/sshd
  2. could not load host key: /etc/ssh/ssh_host_rsa_key
  3. could not load host key: /etc/ssh/ssh_host_ecdsa_key
  4. could not load host key: /etc/ssh/ssh_host_ed25519_key

原因:
1. 从提示信息看是sshd守护进程不能加载主机密钥文件,因为找不到这些密钥文件(配置文件/etc/ssh/sshd_config中已定义密钥文件名与路径);
2. 一般openssh服务正常安装后,主机会自动生成相应的主机密钥文件,但这里因未知原因并没有完成这一步动作,导致无法远程ssh连接。

检查密钥文件是否存在(还有一种现象为:密钥文件存在,但文件大小为0):
  1. [root@aefe8007a17d ~]# ll /etc/ssh/
  2. total 252
  3. -rw-r--r-- 1 root root 242153 mar 21 22:18 moduli
  4. -rw-r--r-- 1 root root 2208 mar 21 22:18 ssh_config
  5. -rw------- 1 root root 4361 mar 21 22:18 sshd_config

重新生成主机密钥文件:
1. 生成rsa_key (-t表示生成的密钥所使用的加密类型;-f项后接要生成的密钥文件名);
  1. [root@aefe8007a17d ~]# ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
  2. generating public/private rsa key pair.
  3. enter passphrase (empty for no passphrase):
  4. enter same passphrase again:
  5. your identification has been saved in /etc/ssh/ssh_host_rsa_key.
  6. your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
  7. the key fingerprint is:
  8. 5e:2d:19:51:b1:e3:e0:60:65:53:e4:14:f8:d8:38:af root@aefe8007a17d
  9. the key's randomart image is:
  10. +--[ rsa 2048]----+
  11. | ==bo |
  12. | o.= . |
  13. | o o=+ |
  14. | . o+*o. |
  15. | s =oo |
  16. | . . .. |
  17. | . . |
  18. | e |
  19. | |
  20. +-----------------+
  21. [root@aefe8007a17d ~]# ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key

2. 生成ecdsa_key;
  1. [root@aefe8007a17d ~]# ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key
3. 生成ed25519_key。
  1. [root@aefe8007a17d ~]# ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key

再次检查密钥文件是否存在且合规,可以看到已生成相应主机密钥文件(实际上主机密钥文件为私钥,.pub文件为公钥):
  1. [root@aefe8007a17d ~]# ll /etc/ssh/
  2. total 276
  3. -rw-r--r-- 1 root root 242153 mar 21 22:18 moduli
  4. -rw-r--r-- 1 root root 2208 mar 21 22:18 ssh_config
  5. -rw------- 1 root root 227 may 22 16:48 ssh_host_ecdsa_key
  6. -rw-r--r-- 1 root root 179 may 22 16:48 ssh_host_ecdsa_key.pub
  7. -rw------- 1 root root 411 may 22 16:48 ssh_host_ed25519_key
  8. -rw-r--r-- 1 root root 99 may 22 16:48 ssh_host_ed25519_key.pub
  9. -rw------- 1 root root 1679 may 22 16:48 ssh_host_rsa_key
  10. -rw-r--r-- 1 root root 399 may 22 16:48 ssh_host_rsa_key.pub
  11. -rw------- 1 root root 4361 mar 21 22:18 sshd_config

此时客户端可ssh连接上sshd服务器端:
  1. [root@localhost ~]# ssh 172.17.0.2
  2. the authenticity of host '172.17.0.2 (172.17.0.2)'can't be established.
    ecdsa key fingerprint is 37:2a:69:46:c4:bd:92:b2:43:b4:cc:42:41:8e:12:2e.
    are you sure you want to continue connecting (yes/no)?

相关标签:

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

相关专题

更多
Java 桌面应用开发(JavaFX 实战)
Java 桌面应用开发(JavaFX 实战)

本专题系统讲解 Java 在桌面应用开发领域的实战应用,重点围绕 JavaFX 框架,涵盖界面布局、控件使用、事件处理、FXML、样式美化(CSS)、多线程与UI响应优化,以及桌面应用的打包与发布。通过完整示例项目,帮助学习者掌握 使用 Java 构建现代化、跨平台桌面应用程序的核心能力。

37

2026.01.14

php与html混编教程大全
php与html混编教程大全

本专题整合了php和html混编相关教程,阅读专题下面的文章了解更多详细内容。

19

2026.01.13

PHP 高性能
PHP 高性能

本专题整合了PHP高性能相关教程大全,阅读专题下面的文章了解更多详细内容。

37

2026.01.13

MySQL数据库报错常见问题及解决方法大全
MySQL数据库报错常见问题及解决方法大全

本专题整合了MySQL数据库报错常见问题及解决方法,阅读专题下面的文章了解更多详细内容。

19

2026.01.13

PHP 文件上传
PHP 文件上传

本专题整合了PHP实现文件上传相关教程,阅读专题下面的文章了解更多详细内容。

16

2026.01.13

PHP缓存策略教程大全
PHP缓存策略教程大全

本专题整合了PHP缓存相关教程,阅读专题下面的文章了解更多详细内容。

6

2026.01.13

jQuery 正则表达式相关教程
jQuery 正则表达式相关教程

本专题整合了jQuery正则表达式相关教程大全,阅读专题下面的文章了解更多详细内容。

3

2026.01.13

交互式图表和动态图表教程汇总
交互式图表和动态图表教程汇总

本专题整合了交互式图表和动态图表的相关内容,阅读专题下面的文章了解更多详细内容。

45

2026.01.13

nginx配置文件详细教程
nginx配置文件详细教程

本专题整合了nginx配置文件相关教程详细汇总,阅读专题下面的文章了解更多详细内容。

9

2026.01.13

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Excel 教程
Excel 教程

共162课时 | 11.7万人学习

Java 教程
Java 教程

共578课时 | 45.9万人学习

Uniapp从零开始实现新闻资讯应用
Uniapp从零开始实现新闻资讯应用

共64课时 | 6.5万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号