在Windows系統查看MongoDB的Data directory與Log directory資料夾的目錄位置方法如下。
本篇的MongoDB版本為v 4.0.11。
在MongoDB的安裝目錄(預設為C:\Program Files\MongoDB\Server\4.0\bin\
)下使用Notepad++開啟MongoDB的設定檔mongod.cfg
(在Linux系統為/etc/mongod.conf
)。
mongod.cfg
開啟內容如下,為一YML格式的文字檔。
storage.dbPath
的值為Data directory的位置;
systemLog.path
的值為Log檔的位置。
mongod.cfg
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# Where and how to store data.
storage:
dbPath: D:\Applications\MongoDB\Server\4.0\data
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: D:\Applications\MongoDB\Server\4.0\log\mongod.log
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1
#processManagement:
#security:
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options:
#auditLog:
#snmp:
參考:
沒有留言:
張貼留言