I installed MongoDB for windows 64 bit that I installed from (http://www.mongodb.org/downloads), the whole process of installing was okay. When I finished the installation and got back to my C:\Program Files there I found nothing. Then I restarted my laptop but found nothing. I again installed it, this time I installed it with customize option in 'D' directory but again no folder was found and it is not installed. Even I searched its files but no file was found. What's the issue here? Thanks in advance for any help in this regard.
-
Just go to your C: or D: drive and search mongo etc. in the search bar, you'll find it. – Mikaal Anwar May 19 '18 at 16:11
-
I have done it before but found nothing. – Mahnoor May 19 '18 at 18:44
-
And now, when I click for repair it says u cannot perform this action on installed softwares. and I found nothing not in search, program files of C:, not in D: and even not in windows search. i am wondering where the hell it's gone.... please help! – Mahnoor May 19 '18 at 18:47
3 Answers
To install:
- Run the installer without Compass selected.
- Download Compass as a separate installation file (from the tabs on the download page of Mongo) and install it.
When you try to connect to the server from Compass you will see that the server is not running.
To get the server running:
- Look under C:\Program Files\3.6\bin and run mongod.exe
- In Compass try to connect to the server again
If you are still not able to connect make sure you have the default database path created: C:\data\db
Then run mongod.exe again.
It should be able to connect now without any problems.

- 56
- 2
I was stuck here too until I reinstalled, but un-clicked the "install mongodb compass" option right before I completed the installation. The installation worked and mongodb finally appeared on the program files directory, whereas before it gave me an error before the installation completed.

- 23
- 3
Please check this URL - Windows MongoDB - Installed Compass but can't find Compass within system
Install .msi
file instead of .exe from https://www.mongodb.com/try/download/compass, then you get the shortcut icon in start option and uninstall option.

- 792
- 8
- 17