美文网首页
CentOS7 安装MongoDB

CentOS7 安装MongoDB

作者: Franck_ | 来源:发表于2020-12-01 11:25 被阅读0次

    1 下载解压安装包

    wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.2.4.tgz
    tar -zxvf mongodb-linux-x86_64-rhel70-3.2.4.tgz  
    
    
    

    2 移动到目标目录

    mv -f mongodb-linux-x86_64-rhel70-3.2.4 /opt/mongodb  
    

    3 增加profile配置

    vim /etc/profile 
    
    export MONGODB_HOME=/opt/mongodb  
    export PATH=$PATH:$MONGODB_HOME/bin  
    

    刷新系统配置

    source /etc/profile 
    

    4 mongodb启动配置

    cd /opt/mongodb/bin  
    
    mkdir data
    cd data
    mkdir db
    cd ../
    mkdir logs
    cd logs
    touch mongodb.log
    cd ../
    
    vim mongodb.conf  
    

    配置文件内容

    dbpath = /opt/mongodb/data/db #数据文件存放目录  
    logpath = /opt/mongodb/logs/mongodb.log #日志文件存放目录  
    port = 27017  #端口  
    fork = true  #以守护程序的方式启用,即在后台运行  
    nohttpinterface = true 
    
    

    mongodb.conf文件内容

    5 启动MongoDB

    ./mongod -f mongodb.conf
    

    如果出现这个错误,可能是各个配置没有细心写, 写错了,或者权限问题

    ERROR: child process failed, exited with error number 1
    
    

    相关文章

      网友评论

          本文标题:CentOS7 安装MongoDB

          本文链接:https://www.haomeiwen.com/subject/ipzjwktx.html