欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

libcrypto.so.10内容丢失导致sshd无法运行

程序员文章站 2021-12-08 10:37:40
今天启动虚拟机,ssh服务起不来,提示如下: Starting sshd: /usr/sbin/sshd: error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such f ......

今天启动虚拟机,ssh服务起不来,提示如下:

Starting sshd: /usr/sbin/sshd: error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such file or directory

导致这个问题是我昨天 rpm -e openssl –nodeps强制卸载openssl导致的,都怪自己。

 

可以查看sshd的库 命令:ldd  /usr/sbin/sshd 

看到libcrypto.so.10是找不到指定文件的

在 /etc/ld.so.conf 的配置文件里需要指定程序去哪里找所需的共享库 

 

解决方法:重新安装openssl的包即可

rpm -ivh openssl-1.0.0-20.el6-* “*”根据服务器系统版本自行决定rpm包类型

 

谨记:不要随意删除软件包