mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
ea770fa14b
Mongo (from "humongous") is a high-performance, open source, schema-free, document-oriented database. A common name in the "NOSQL" community. WWW: https://www.mongodb.com/ PR: 242002 Submitted by: Ronald Klop <ronald-lists@klop.ws> Reviewed by: koobs, mikael Relnotes: https://docs.mongodb.com/manual/release-notes/4.2/
26 lines
664 B
Plaintext
26 lines
664 B
Plaintext
--- rpm/mongod.conf.orig 2019-08-08 20:06:23 UTC
|
|
+++ rpm/mongod.conf
|
|
@@ -7,11 +7,11 @@
|
|
systemLog:
|
|
destination: file
|
|
logAppend: true
|
|
- path: /var/log/mongodb/mongod.log
|
|
+ path: /var/db/mongodb/mongod.log
|
|
|
|
# Where and how to store data.
|
|
storage:
|
|
- dbPath: /var/lib/mongo
|
|
+ dbPath: /var/db/mongodb
|
|
journal:
|
|
enabled: true
|
|
# engine:
|
|
@@ -20,7 +20,7 @@ storage:
|
|
# how the process runs
|
|
processManagement:
|
|
fork: true # fork and run in background
|
|
- pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
|
|
+ pidFilePath: /var/db/mongodb/mongod.lock # location of pidfile
|
|
timeZoneInfo: /usr/share/zoneinfo
|
|
|
|
# network interfaces
|