File tree 1 file changed +9
-6
lines changed
1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,18 @@ Welcome to MongoDB!
6
6
7
7
- ` mongod ` - The database server.
8
8
- ` mongos ` - Sharding router.
9
- - ` mongo ` - The database shell (uses interactive javascript).
10
9
11
10
## Download MongoDB
12
11
13
12
- https://www.mongodb.com/try/download/community
14
13
- Using homebrew ` brew tap mongodb/brew `
15
14
- Using docker image ` docker pull mongo `
16
15
16
+ ## Download the MongoDB Shell
17
+
18
+ - https://www.mongodb.com/try/download/shell
19
+ - Using homebrew ` brew install mongosh `
20
+
17
21
## Building
18
22
19
23
See [ Building MongoDB] ( docs/building.md ) .
@@ -32,9 +36,9 @@ To run a single server database:
32
36
$ sudo mkdir -p /data/db
33
37
$ ./mongod
34
38
$
35
- $ # The mongo javascript shell connects to localhost and test database by default:
36
- $ ./mongo
37
- > help
39
+ $ # The mongosh shell connects to localhost and test database by default:
40
+ $ ./mongosh
41
+ test > help
38
42
```
39
43
40
44
## Installing Compass
@@ -51,8 +55,7 @@ and install it.
51
55
## Drivers
52
56
53
57
Client drivers for most programming languages are available at
54
- https://docs.mongodb.com/manual/applications/drivers/ . Use the shell
55
- (` mongo ` ) for administrative tasks.
58
+ https://docs.mongodb.com/manual/applications/drivers/ .
56
59
57
60
## Bug Reports
58
61
You can’t perform that action at this time.
0 commit comments