mongoDB4.0安装与配置文件

部署安装

1.安装支持软件包

yum -y install openssl-devel libcurl
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.0.0.tgz 

或者

官网下载:https://www.mongodb.com/dr/fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-4.0.5.tgz/download

 

2.解压缩MongoDB软件包

tar zxvf mongodb-linux-x86_64-rhel70-4.0.0.tgz -C /opt

 

3.重命名并移动目录至/usr/local/目录下

mv /opt/mongodb-linux-x86_64-rhel70-4.0.0 /usr/local/mongodb

 

4.创建MongoDB的数据存储目录、日志存储目录及日志文件

mkdir -p /data/mongodb/data

mkdir -p /data/mongodb/conf

mkdir -p /data/mongodb/logs
touch /data/mongodb/logs/mongo.log

 

5. 新建配置文件

vim /data/mongodb/conf/mongodb.conf
systemLog:
  destination: file
  path: /usr/local/var/log/mongodb/mongo.log 
  logAppend: true
storage:
  dbPath: /usr/local/var/mongodb
net:
  port: 27110
  bindIp: 127.0.0.1
security:
  authorization: enabled
processManagement:
  fork: true

修改完之后按 esc 

然后 :wq

完成

 

6.添加变量(.bash_profile)

export PATH=/usr/local/mongodb/bin:$PATH

注: /usr/local/mongodb/bin 为你的mongodb解压后所放置的目录

你可能感兴趣的:(mongodb)