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.
|
- `mongod` - The database server.
|
||||||
- `mongos` - Sharding router.
|
- `mongos` - Sharding router.
|
||||||
- `mongo` - The database shell (uses interactive javascript).
|
|
||||||
|
|
||||||
## Download MongoDB
|
## Download MongoDB
|
||||||
|
|
||||||
@ -14,6 +13,11 @@ Welcome to MongoDB!
|
|||||||
- Using homebrew `brew tap mongodb/brew`
|
- Using homebrew `brew tap mongodb/brew`
|
||||||
- Using docker image `docker pull mongo`
|
- Using docker image `docker pull mongo`
|
||||||
|
|
||||||
|
## Download the MongoDB Shell
|
||||||
|
|
||||||
|
- https://www.mongodb.com/try/download/shell
|
||||||
|
- Using homebrew `brew install mongosh`
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
See [Building MongoDB](docs/building.md).
|
See [Building MongoDB](docs/building.md).
|
||||||
@ -32,9 +36,9 @@ To run a single server database:
|
|||||||
$ sudo mkdir -p /data/db
|
$ sudo mkdir -p /data/db
|
||||||
$ ./mongod
|
$ ./mongod
|
||||||
$
|
$
|
||||||
$ # The mongo javascript shell connects to localhost and test database by default:
|
$ # The mongosh shell connects to localhost and test database by default:
|
||||||
$ ./mongo
|
$ ./mongosh
|
||||||
> help
|
test> help
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installing Compass
|
## Installing Compass
|
||||||
@ -51,8 +55,7 @@ and install it.
|
|||||||
## Drivers
|
## Drivers
|
||||||
|
|
||||||
Client drivers for most programming languages are available at
|
Client drivers for most programming languages are available at
|
||||||
https://docs.mongodb.com/manual/applications/drivers/. Use the shell
|
https://docs.mongodb.com/manual/applications/drivers/.
|
||||||
(`mongo`) for administrative tasks.
|
|
||||||
|
|
||||||
## Bug Reports
|
## Bug Reports
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user