mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
SERVER-91333: Reference mongosh in README instead of mongo shell (#25936)
GitOrigin-RevId: 838ec9366a4d4cc82fc916cc4303d2fb0b111d82
This commit is contained in:
parent
a09609e5f1
commit
93f63fcf3d
15
README.md
15
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user