To install MongoDB, follow the steps below:
For Mac OS:
$ brew install mongodb
Download the latest release
here. Make sure that you are
downloading the appropriate file, specially check whether your
operating system type is 32-bit or 64-bit. The downloaded file is in format tgz
.
Go to the directory where this file is downloaded. Then type the following command:
$ tar xvf mongodb-osx-xyz.tgz
Instead of xyz
, there would be some version and system type information. The extracted folder would be same name as the tgz
file. Inside the folder, their would be a subfolder named bin
which would contain several binary file along with mongod
and mongo
.
By default server keeps data in folder /data/db
. So, we have to create that directory and then run the server having the following commands:
$ sudo bash
# mkdir -p /data/db
# chmod 777 /data
# chmod 777 /data/db
# exit
To start the server, the following command should be given from the current location:
$ ./mongod
It would start the server on port 27017 by default.
To start the client, a new terminal should be opened having the same directory as before. Then the following command would start the client and connect to the server.
$ ./mongo
By default it connects to the test
database. If you see the line like connecting to: test
. Then you have successfully installed MongoDB. Congrats! Now, you can test Hello World to be more confident.
For Windows:
Download the latest release here. Make sure that you are downloading the appropriate file, specially check whether your operating system type is 32-bit or 64-bit.
The downloaded binary file has extension exe
. Run it. It will prompt an installation wizard.
Click Next.
Accept the licence agreement and click Next.
Select Complete Installation.
Click on Install. It might prompt a window for asking administrator's permission. Click Yes.
After installation click on Finish.
Now, the mongodb is installed on the path C:/Program Files/MongoDB/Server/3.2/bin
. Instead of version 3.2, there could be some other version for your case. The path name would be changed accordingly.
bin
directory contain several binary file along with mongod
and mongo
. To run it from other folder, you could add the path in system path. To do it:
Now, create a folder named data
having a sub-folder named db
where you want to run the server.
Start command prompt from their. Either changing the path in cmd or clicking on Open command window here which would be visible after right clicking on the empty space of the folder GUI pressing the Shift and Ctrl key together.
Write the command to start the server:
> mongod
It would start the server on port 27017 by default.
Open another command prompt and type the following to start client:
> mongo
By default it connects to the test
database. If you see the line like connecting to: test
. Then you have successfully installed MongoDB. Congrats! Now, you can test Hello World to be more confident.
For Linux: Almost same as Mac OS except some equivalent command is needed.
apt-get
):
Import MongoDB Repository key.
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927
gpg: Total number processed: 1\
gpg: imported: 1 (RSA: 1)
Add repository to package list on Ubuntu 16.04.
$ echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
on Ubuntu 14.04.
$ echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
Update package list.
$ sudo apt-get update
Install MongoDB.
$ sudo apt-get install mongodb-org
yum
):
use a text editor which you prefer.
$ vi /etc/yum.repos.d/mongodb-org-3.4.repo
Paste following text.
[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
Update package list.
$ sudo yum update
Install MongoDB
$ sudo yum install mongodb-org