Lompat ke konten Lompat ke sidebar Lompat ke footer

Tutorial How To Install Mongodb In Windows + Compass Gui Admin

Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
MongoDB is a database system that stores data in flexible JSON-based documents, which means that the fields can vary from document to document and the data structure can be changed from time to time.

MongoDB works very differently than other relational databases such as MySQL. Model documents in the MongoDB folder to objects in the application code. This makes data smoother and easier to use. You only need to work with objects, and they have persistence with MongoDB.

MongoDB is free and open source and very good for various types of scales of your project. With the MongoDB JSON object entered and the JSON object exiting the database, there is no data transformation like an SQL-based system.

↪ Install MongoDB on Windows

Immediately we will try to install MongoDB on our computer and try some of the interesting features it uses, you can download it first on the download page on the official MongoDB website, you can choose the community server edition for Windows and click the download button to get a copy of the installation package in form the .msi file, after downloading, just click and install it to your computer as follows.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
Then select the Complete installation type.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
Next, the Install MongoDB Compass page appears, check the Install MongoDB Compass section in the lower left, then click the Next button to continue the process until it's finished.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
Up to this point, the MongoDB installation process is complete, but there are several additional installations needed to make the usage easier.

↪ Install Compass GUI for MongoDB

Compass GUI in MongoDB can be likened to phpMyAdmin for MySQL, this is a GUI tool to make it easier for us to manage databases more easily.

For that you can re-visit the download page on the MongoDB website and select it in the Compass tab, select Windows and click Download.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin

Next, install Compass that has been downloaded, you will see a display like this.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
When finished, the Compass application will run and you will see a welcome message.

↪ Add path MongoDB Environment Variable. 

The last part we have to do at the installation process is to add the MongoDB folder address to your Windows system path so that it's easy to use the command on the console (CMD), this is how.
  • Open the Windows System Settings page by typing in the Windows taskbar.
  • Then click the Environment Variables button.
  • Select Path then click the Edit button.
  • Then in the Edit environment variable window press the New button, then enter the path of your MongoDB installation location, the location is usually in C:\Program Files\MongoDB\Server\4.0\bin.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin
  • Then click OK

↪ Create a folder to store data

This is the selesai step that needs to be set, the folder location where MongoDB will store data. The location is by default in c:\ data\db\, Please create a folder on your computer right now. Great, now you are ready to use MongoDB.

You can type the mongod command at the command prompt and then press Enter. You will find a lot of information there, but the most important information is that you can see the words "waiting for connection on port 27017".

That means the MongoDB Database is running and ready for use. We can use Compass GUI to connect to the database, let's try it.

If connected, it will look like this.
Tutorial How to Install MongoDB in Windows  Tutorial How to Install MongoDB in Windows + Compass GUI Admin

Conclusion
To run MongoDB we need several steps, but after that you can use it on the local computer. We can also use Compass GUI which functions like phpMyAdmin for MySQL.

MongoDB is an open source (NoSQL) document database, MongoDB stores data flexibly, like JSON documents.

Relational databases usually have tables & rows, while MongoDB does not. MongoDB uses collections and documents, the document can contain sub-documents.