From 93f63fcf3dfa6e169df9da8919c6d901d9c58a85 Mon Sep 17 00:00:00 2001 From: Eric Sedor Date: Fri, 16 Aug 2024 09:39:51 -0700 Subject: [PATCH] SERVER-91333: Reference mongosh in README instead of mongo shell (#25936) GitOrigin-RevId: 838ec9366a4d4cc82fc916cc4303d2fb0b111d82 --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 27258d5aa26..94644b904f3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ Welcome to MongoDB! - `mongod` - The database server. - `mongos` - Sharding router. -- `mongo` - The database shell (uses interactive javascript). ## Download MongoDB @@ -14,6 +13,11 @@ Welcome to MongoDB! - Using homebrew `brew tap mongodb/brew` - Using docker image `docker pull mongo` +## Download the MongoDB Shell + +- https://www.mongodb.com/try/download/shell +- Using homebrew `brew install mongosh` + ## Building See [Building MongoDB](docs/building.md). @@ -32,9 +36,9 @@ To run a single server database: $ sudo mkdir -p /data/db $ ./mongod $ -$ # The mongo javascript shell connects to localhost and test database by default: -$ ./mongo -> help +$ # The mongosh shell connects to localhost and test database by default: +$ ./mongosh +test> help ``` ## Installing Compass @@ -51,8 +55,7 @@ and install it. ## Drivers Client drivers for most programming languages are available at -https://docs.mongodb.com/manual/applications/drivers/. Use the shell -(`mongo`) for administrative tasks. +https://docs.mongodb.com/manual/applications/drivers/. ## Bug Reports