在虚拟机liunx中安转mongodb

Posted answerhfh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在虚拟机liunx中安转mongodb相关的知识,希望对你有一定的参考价值。

一、在mongodb官网 下载编译好的文件。mongodb-linux-i686-3.2.5.gz

二、下载完zip文件,需要把文件copy到虚拟机的linux中。

采用安装SSH Secure File Transfer Client,来传输文件。

        1)安装完SSH后,先配置linux 的ip。配置的ip地址应与宿主机在一个网段内,假设宿主机ip为192.168.10.101,则虚拟机ip设置为192.168.1.102.配置命令如下:

             ifconfig eth0 192.168.1.102

        2)打开ssh客户端,输入linux 的ip、用户名、密码就可以登录访问。

          

           3、解压文件   tar -zxvf  mongodb-linux-i686-3.2.5.gz  

           配置mongod.conf 文件

           


        4、启动   ./bin/mongod -f conf/mongod.conf       

           提示错误:32-bit servers don't have journaling enabled by default. Please use --journal

          解决办法: ./bin/mongod -f conf/mongod.conf --journal

       5、再次启动    ./bin/mongod -f conf/mongod.conf --journal

           提示错误   child process failed

           查看log:The default storage engine 'wiredTiger' is not available with this build of mongod. 

           解决办法: 在mongod.conf 文件中添加  storageEngine=mmapv1

6、再次启动  ./bin/mongod -f conf/mongod.conf --journal 成功

三、访问数据库:


以上是关于在虚拟机liunx中安转mongodb的主要内容,如果未能解决你的问题,请参考以下文章

在虚拟机(VMware)中安装Linux CentOS 6.4系统(图解) 转

在虚拟机(VMware)中安装Linux CentOS 6.4系统(图解) 转

MongoDB学习--环境搭建记录

MongoDB集群配置

(转)windows下VMware-workstation中安装CentOS

虚拟机下liunx安装jdk