Home  >  Article  >  Database  >  Ubuntu 10.04 安装 MongoDB 注意事项

Ubuntu 10.04 安装 MongoDB 注意事项

WBOY
WBOYOriginal
2016-06-07 16:57:31978browse

Ubuntu 10.04 里面有很多好用的东西,目前算是挺有名的 MongoDB 系统也有了。只要 sudo apt-get install mongodb 应该就会装好。

Ubuntu 10.04 里面有很多好用的东西,,目前算是挺有名的 MongoDB 系统也有了。

相关阅读:Ubuntu 10.04上的安装MongoDB

只要 sudo apt-get install mongodb 应该就会装好。

但是安装得朋友一定都会发现,装起来无法启动无法使用。

在查找了一些资料后发现:

这主要的问题在于少了 /usr/lib/libmozjs.so 这个软件库的文件。

只要你有装 Firefox 或是 另外安装 xulrunner 就应该会有,不过路径是错得。

所以就要这样:sudo apt-get install xulrunner-1.9.2

安装好了以后,建立连结。

ln -s /usr/lib/xulrunner-1.9.2.6/libmozjs.so /usr/lib/libmozjs.so

然后重新启动 mongodb 试试看,应该就会看到 mongodb 正确启动。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn