1. 程式人生 > >Centos7 下 MongoDB4.0.0 的安裝及複製集配置

Centos7 下 MongoDB4.0.0 的安裝及複製集配置

#mongod.conf
#for documentation of all options, see:
#http://docs.mongodb.org/manual/reference/configuration-options/
systemLog:
   destination: file
   logAppend: true
   path: /usr/local/mongodb/log1/mongodb.log
storage:
   dbPath: /usr/local/mongodb/data1/
   journal:
      enabled: true
processManagement:
   fork: true
   pidFilePath: /usr/local/mongodb/mongod.pid
   timeZoneInfo: /usr/share/zoneinfo
net:
   port: 27017
   bindIp: 0.0.0.0
replication:
   replSetName: energy-rc
security:
   keyFile: /usr/local/mongodb/energy-rc.key