温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

芒果数据库配置文件

发布时间:2020-07-19 01:46:44 来源:网络 阅读:950 作者:yht_1990 栏目:MongoDB数据库

配置文件1

# mongod.conf
systemLog:
  destination: file
  logAppend: true
storage:
  journal:
    enabled: true
  directoryPerDB: true
  engine: wiredTiger
  wiredTiger:
    engineConfig:
      cacheSizeGB: 2
      directoryForIndexes: true
    indexConfig:
      prefixCompression: true
processManagement:
  fork: true
net:
  port: 27017

目录介绍
/data/wyd/mongodb下的目录内容如下
backup(备份) log(日志) pid(pid文件) script shard-a-primary(数据库目录)

cacheSize是指系统分配给mongod用的内存,比如你系统有三十G内存,你可以分配二十四G内存给Mongodb

配置文件详细说明参考
https://blog.csdn.net/jianlong727/article/details/53484440

Mongodb内存缓存大小配置
http://www.jyguagua.com/?p=3248

启动

numactl --interleave=all mongod -f /etc/mongod.conf \
--dbpath /data/wyd03/mongodbard-a-primary \
--logpath /data/wyd03/mongodb/logard-a-primary.log \
--pidfilepath /data/wyd03/mongodb/pidard-a-primary.pid --port 27021

指定不一样的pid和端口这样就可以起启多个不一样的进程

线上配置文件二

dbpath=/data/mongodb/db
logpath=/data/mongodb/logs/mongodb.log
bind_ip=127.0.0.1
port=27017
fork=true
nohttpinterface=true
auth=true

启动
/usr/local/mongodb/bin/mongod -f /usr/local/mongodb/conf/mongodb.conf

线上配置文件三

systemLog:
  quiet: false
  logAppend: true
  destination: file
  path: /data/mongodb/logs/mongod.log
storage:
  dbPath: /data/mongodb/db
  journal:
    enabled: true
  engine: wiredTiger
  wiredTiger:
    engineConfig:
      cacheSizeGB: 16
    indexConfig:
      prefixCompression: true
processManagement:
  fork: true
net:
  bindIp: 127.0.0.1
  port: 27017
security: 
  authorization: enabled
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI