Package Details: mongodb-bin 8.0.4-1

Git Clone URL: https://aur.archlinux.org/mongodb-bin.git (read-only, click to copy)
Package Base: mongodb-bin
Description: A high-performance, open source, schema-free document-oriented database
Upstream URL: https://www.mongodb.com/
Keywords: database document-oriented mongo mongod mongodb mongos
Licenses: SSPL-1.0
Conflicts: mongodb, mongodb-shell-bin
Provides: mongodb
Submitter: ali.molaei
Maintainer: ali.molaei (rafaelff)
Last Packager: ali.molaei
Votes: 93
Popularity: 0.39
First Submitted: 2019-01-28 09:01 (UTC)
Last Updated: 2024-12-13 11:09 (UTC)

Dependencies (5)

Required by (31)

Sources (7)

Pinned Comments

ali.molaei commented on 2021-07-28 14:29 (UTC) (edited on 2024-11-02 19:21 (UTC) by ali.molaei)

If you get core dumps on version 5 or above, read this: https://jira.mongodb.org/browse/SERVER-58648

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 Next › Last »

chrbayer commented on 2020-08-21 12:53 (UTC)

Thanks, that worked. This setting should be included in the package I would say... But why are the limits the limit.d directory ignored?

Bodenhaltung commented on 2020-08-21 11:08 (UTC)

Soft rlimits too low

systemctl edit mongodb.service

And add

[Service] LimitNOFILE=64000

restart mongod.

chrbayer commented on 2020-08-20 22:28 (UTC)

Hi, thank you for providing this package!

After updating from 4.2 I get the following two errors on startup:

  • Access control is not enabled for the database. Read and write access to data and configuration is unrestricted
  • Soft rlimits too low

Access control was active in 4.2 but now it seem to be gone, do I have to reenable it again? The necessary limits are set in /etc/security/limits.d/98-mongodb.conf but seem to be ignored from the version 4.4. How can they be applied?

Thank you very much in advance!

Best regards, Chris

ivansaul commented on 2020-08-20 20:57 (UTC)

Hi. If you are getting PGP key importing error, like this. Follow these instructions that I wrote on my blog. https://app.gitbook.com/@ivansaul/s/blog/how-to-install-mongodb-on-arch-linux

==> PGP keys need importing:
 -> 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2, required by: libcurl-openssl-1.0
==> Import? [Y/n] y
:: Importing keys with gpg......
gpg: keyserver receive failed: General error
==> Error: Problem importing keys

hmblesam commented on 2020-08-09 05:25 (UTC)

@jeeeem Thank you. It worked

diogobaeder commented on 2020-08-03 18:08 (UTC)

Thanks @krist , it's working fine now after I ran your recommended command :-)

krist commented on 2020-08-03 08:53 (UTC) (edited on 2020-08-03 08:55 (UTC) by krist)

@diogobaeder: You probably need to update featureCompatibilityVersion, see docs.

If you came from 4.2.6+, you essentially need to downgrade to latest 4.2 to get mongodb up and running again, run db.adminCommand( { setFeatureCompatibilityVersion: "4.2" } ) on the mongo shell with admin permissions and then upgrade to 4.4.

If you upgraded from 4.2.5 or earlier, you might need to re-install from scratch and restore data from backup instead of simply downgrading.

diogobaeder commented on 2020-08-02 06:50 (UTC)

Hi folks,

After the upgrade to 4.4.0 it won't start anymore for me:

{"t":{"$date":"2020-08-02T03:41:05.175-03:00"},"s":"W",  "c":"STORAGE",  "id":22347,   "ctx":"initandlisten","msg":"Failed to start up WiredTiger under any compatibility version. This may be due to an unsupported upgrade or downgrade."}
{"t":{"$date":"2020-08-02T03:41:05.176-03:00"},"s":"F",  "c":"STORAGE",  "id":28595,   "ctx":"initandlisten","msg":"Terminating.","attr":{"reason":"95: Operation not supported"}}
{"t":{"$date":"2020-08-02T03:41:05.176-03:00"},"s":"F",  "c":"-",        "id":23091,   "ctx":"initandlisten","msg":"Fatal assertion","attr":{"msgid":28595,"file":"src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp","line":1100}}

Any ideas?