我是Ubuntu平台上的新手(过去是Windows 10)。我想创建将存储mongodb数据的特定目录。
结构设计期望
现在我通过Mongodb-official-link-for-ubuntu-installation
的官方文档链接安装了Mongodb。现在,我想创建三个单独的实例,并且所有数据和日志文件都位于特定的文件夹下。我已经在Windows上做到了,但是在Ubuntu 18.04 LTS上却做不到。
我的master.conf文件是:
# master.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# Where and how to store data.
storage:
dbPath: /home/mongodb/master
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /home/mongodb/master/master.log
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1
# how the process runs
processManagement:
timeZoneInfo: /usr/share/zoneinfo
#security:
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options:
#auditLog:
#snmp:
从属和仲裁者
任何人都可以建议我该怎么做。任何帮助都非常感谢。