Centos7下安装MongoDB--v3.6

基于centos7安装mongoDB
3.6版本的社区版mongoDB安装。

step1、在MongoDB官网下载安装包


选择下载的版本

step2、进入到/opt/下执行 下载

wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.6.5.tgz

step3、解压

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

step4、重命名

mv mongodb-linux-x86_64-rhel70-3.6.5.tgz  mongodb3.6

step5、创建目录


创建data目录和logs目录

step6、进入到MongoDB安装目录的bin目录,创建mongodb.conf文件

vim /opt/mongodb3.6/bin/mongodb.conf

配置文件如下

dbpath = /opt/mongodb3.6/data #数据文件存放目录
logpath = /opt/mongodb3.6/logs/mongodb.log #日志文件存放目录
port = 27017  #端口
fork = true  #以守护程序的方式启用,即在后台运行
# nohttpinterface = true  这个配置需要去掉,不然会出现一个如下错误
# Error parsing INI config file: unrecognised option 'nohttpinterface'
auth=true
bind_ip=0.0.0.0

step7、启动——进入bin目录下

./mongod -f ./mongodb.conf

step8、查看是否启动成功

ps -ef|grep mongodb
启动成功

你可能感兴趣的:(Centos7下安装MongoDB--v3.6)