我正在尝试在我的 vps 上设置 Mongodb,但是在尝试启动它时:
service mongod start
它返回此错误:
Starting mongod: /usr/bin/mongod: error while loading shared libraries:
libstdc++.so.6: cannot open shared object file: No such file or directory
[FAILED]
据我所知,Mongodb 在 c++ 上运行,因此我安装了:
Installed:
gcc-c++.x86_64 0:4.4.6-4.el6
Dependency Installed:
libstdc++-devel.x86_64 0:4.4.6-4.el6
但我仍然收到错误。也许它没有权限。(运行 Centos 6.3 64 位)
附言:我是新手。
答案1
您需要安装libstdc++
以满足该依赖关系
所以yum install libstdc++
应该可以解决问题。