linux – MongoDB安装错误:“mongod:加载共享库时出错:libc .so.1 ……”

前端之家收集整理的这篇文章主要介绍了linux – MongoDB安装错误:“mongod:加载共享库时出错:libc .so.1 ……”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用本教程在我的64位Ubuntu操作系统上安装 mongodb

http://docs.mongodb.org/manual/tutorial/install-mongodb-on-linux/

完成安装后,我输入:

mongo

从那时起,出现错误消息:

mongod: error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file or directory

你有什么想法解决这个问题吗?这是我的系统信息:

OS: Ubuntu 14.04 LTS.
OS Type: 64 bit.
MongoDB version: mongodb-linux-x86_64-ubuntu1410-clang-3.0.6.

解决方法

我使用Ubuntu 14.04.3 64位(mongodb-linux-x86_64-ubuntu1410-clang-3.2.4),我能够使用以下命令安装libc .so.1相关软件包:
sudo apt-get update
sudo apt-get install libc++1

注意:
我的Ubuntu VM使用公司代理,最初’sudo apt-get install libc 1’给出了一个错误.由于我安装了Synaptic Package Manager,我尝试使用Synaptic来安装libc 1并且它成功了. MongoDB开始工作.为了仔细检查上述命令是否有效,我做到了

sudo apt-get remove libc++1
sudo apt-get install libc++1

并且命令有效.
如果您还需要使用Synaptic,这里是屏幕截图

原文链接:https://www.f2er.com/linux/393144.html

猜你在找的Linux相关文章