Centos 7.x安装Mongodb

一、下载

wget wget https://www.ydhwh.cn/mongodb-linux-x86_64-rhel70-3.6.8.tgz

二、解压

tar -zxvf mongodb-linux-x86_64-rhel70-3.6.8.tgz

三、配置

1、新建db、log存放文件

2、新建配置文件 mongo.config

dbpath=/usr/local/product/mongodb/db

logpath=/usr/local/product/mongodb/log/mongo.log

fork=true

bind_ip=127.0.0.1

四、启动关闭

Mongodb启动

mongod -f /usr/local/product/mongodb/mongo.config

win下开机启动

mongod –config c:\data\mongodb\mongo.config –install –serviceName “MongoDB”

Mongodb安全关闭

mongod –shutdown -f /usr/local/product/mongodb/mongo.config

五、配置Mongodb账号密码(待续)

    原文作者:嗜睡虫虫虫
    原文地址: https://www.jianshu.com/p/a3f5c6505a3a
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞