0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 16:46:00 +01:00
The MongoDB Database
Go to file
Alexander Neben 76fa3d6f89 SERVER-94534 Added owning team to codeowners (#26886)
GitOrigin-RevId: 79590effe86c471cc15d91c6785599ec2085d7c0
2024-09-10 00:01:20 +00:00
.github SERVER-92931 Move query jstests into 'query' subdirectories (#25775) 2024-09-07 03:01:57 +00:00
.vscode_defaults SERVER-94508 Update VSCode defaults for clickable stacktraces (#26782) 2024-09-06 13:23:57 +00:00
bazel SERVER-94490 Upstream aggregated Bazel conversions (#26806) 2024-09-06 08:11:43 +00:00
buildfarm SERVER-88994 Change OWNERS.yml files to use github teams (#20792) 2024-04-04 21:40:28 +00:00
buildscripts SERVER-94534 Added owning team to codeowners (#26886) 2024-09-10 00:01:20 +00:00
debian SERVER-93920: Final cleanup for enableMajorityReadConcern flag (#26455) 2024-08-23 19:21:58 +00:00
distsrc SERVER-90391 Update Enterprise license headers and Community README (#22692) 2024-06-06 20:11:45 +00:00
docs SERVER-94534 Added owning team to codeowners (#26886) 2024-09-10 00:01:20 +00:00
etc SERVER-94463 move Embedded Router concurrency and passthrough tasks to dedicated build variant (#26800) 2024-09-09 19:53:50 +00:00
evergreen SERVER-93284 Convert 19 targets from SCons to Bazel (#26877) 2024-09-09 22:58:58 +00:00
jstests SERVER-93576: Redacted queryVector Embeddings Field and Added Test (#26882) 2024-09-09 21:36:43 +00:00
rpm SERVER-87451 Upgrade rhel8.0 variants to rhel8.8 (#24255) 2024-07-05 21:35:08 +00:00
site_scons SERVER-93284 Convert 19 targets from SCons to Bazel (#26877) 2024-09-09 22:58:58 +00:00
src SERVER-89093 Remove catchingInvoke and gSuppressNetworkInterfaceTransportLayerExceptions (#26873) 2024-09-10 00:01:07 +00:00
tools SERVER-89209 Create Developer Workstation Bazel Installation Script (#20994) 2024-04-11 00:54:28 +00:00
.bazelignore SERVER-90718 add wiredtiger dist dir to bazelignore (#24508) 2024-07-10 18:32:32 +00:00
.bazelrc SERVER-94003 Reuse Bazel sandboxes (#26477) 2024-08-23 22:06:28 +00:00
.bazelversion SERVER-86787 Update Bazelisk to pin Bazel to v6.4.0 (#19093) 2024-02-20 22:20:26 +00:00
.clang-format
.clang-tidy.in SERVER-80631 add compile_command.json support for bazel (#25604) 2024-08-02 21:56:14 +00:00
.eslintignore
.eslintrc.yml SERVER-94437 Introduce test runner prelude for interactive mode (#26746) 2024-09-05 14:44:51 +00:00
.gdbinit
.git-blame-ignore-revs SERVER-90771: Ignore Ruff formatting changes in git history (#22455) 2024-05-23 14:11:58 +00:00
.gitattributes
.gitignore SERVER-94015 fix gitignore core file wildcard (#26508) 2024-08-26 20:16:01 +00:00
.lldbinit
.mypy.ini
.prettierignore SERVER-93772 Add comment for golden tests in .prettierignore (#26649) 2024-09-02 08:57:24 +00:00
.prettierrc SERVER-88970 Added ignored revs to this formatting change 2024-04-06 09:51:25 +00:00
.pydocstyle
.pylintrc
.style.yapf
.udbinit
BUILD.bazel SERVER-93846 Add support for symbol reordering in Bazel (#26389) 2024-08-21 22:16:15 +00:00
CONTRIBUTING.rst
copy.bara.sky SERVER-90928 Remove lines other than commit title from syncing (#22589) 2024-05-28 23:12:16 +00:00
copybara.staging.sky
CreativeCommons.txt
jsconfig.json
LICENSE-Community.txt
OWNERS.yml SERVER-94534 Added owning team to codeowners (#26886) 2024-09-10 00:01:20 +00:00
package.json SERVER-76878 Add markdown linting capability in Bazel (#18446) 2024-02-05 18:19:36 +00:00
pnpm-lock.yaml SERVER-76878 Add markdown linting capability in Bazel (#18446) 2024-02-05 18:19:36 +00:00
poetry.lock SERVER-94305 Revert cryptography update to resolve deprecated warning (#26670) 2024-08-30 23:29:51 +00:00
pyproject.toml SERVER-94305 Revert cryptography update to resolve deprecated warning (#26670) 2024-08-30 23:29:51 +00:00
README.md SERVER-91333: Reference mongosh in README instead of mongo shell (#25936) 2024-08-16 18:24:46 +00:00
README.third_party.md SERVER-88284 upgrade windows cyrus sasl to 2.1.28 (#25667) 2024-08-07 06:54:25 +00:00
sbom.json SERVER-91589 Re-assign third party libraries to new Service Arch subteams (#26398) 2024-08-26 19:48:29 +00:00
SConstruct SERVER-94305 Revert cryptography update to resolve deprecated warning (#26670) 2024-08-30 23:29:51 +00:00
symbols.orderfile SERVER-90930 adding symbol.orderfile and build flags (#22633) 2024-05-29 01:44:21 +00:00
WORKSPACE.bazel SERVER-94490 Upstream aggregated Bazel conversions (#26806) 2024-09-06 08:11:43 +00:00

Logo MongoDB README

Welcome to MongoDB!

Components

  • mongod - The database server.
  • mongos - Sharding router.

Download MongoDB

Download the MongoDB Shell

Building

See Building MongoDB.

Running

For command line options invoke:

$ ./mongod --help

To run a single server database:

$ sudo mkdir -p /data/db
$ ./mongod
$
$ # The mongosh shell connects to localhost and test database by default:
$ ./mongosh
test> help

Installing Compass

You can install compass using the install_compass script packaged with MongoDB:

$ ./install_compass

This will download the appropriate MongoDB Compass package for your platform and install it.

Drivers

Client drivers for most programming languages are available at https://docs.mongodb.com/manual/applications/drivers/.

Bug Reports

See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.

Packaging

Packages are created dynamically by the buildscripts/packager.py script. This will generate RPM and Debian packages.

Learn MongoDB

Cloud Hosted MongoDB

https://www.mongodb.com/cloud/atlas

Forums

LICENSE

MongoDB is free and the source is available. Versions released prior to October 16, 2018 are published under the AGPL. All versions released after October 16, 2018, including patch fixes for prior versions, are published under the Server Side Public License (SSPL) v1. See individual files for details which will specify the license applicable to each file. Files subject to the SSPL will be noted in their headers.