top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

bin in not installed in my zip folder of MongoDB?

+1 vote
368 views

I have downloaded 2.6.12 windows 64 bit legacy. When i try to get all files from zip folder bin folder is not found.
Appreciate for any help

posted Apr 29, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

it generally happens if you are not installing mongodb by MSI package available on mongodb official site. follow these steps :
Go to C:\Program Files\MongoDB\Server\2.6.12 in your system location and look for bin, it is is not there check system requirements :
1. MongoDB for Windows 64-bit Legacy runs on Windows Vista, Windows Server 2003, and Windows Server 2008 and does not include recent performance enhancements.
2. try this command on cmd

wmic os get osarchitecture

for checking your system architecture then
3. install mongodb by running this on cmd

msiexec.exe /q /i mongodb-<version>-signed.msi INSTALLLOCATION="<installation directory>"

Reference: https://docs.mongodb.org/v2.6/tutorial/install-mongodb-on-windows/

answer Apr 29, 2016 by Shivam Kumar Pandey
Similar Questions
0 votes

I am trying to install MongoDB on Windows 7 Enterprise (32bit) VM running in VirtualBox on Windows7 Ultimate 64bit.
The MongoD.exe start up reports a missing Microsoft Hotfix, KB2731284. I downloaded and installed the hot fix on the VM. The hotfix was not required on the Host PC.

Mongod.exe still reported it was not installed. Ran the hotfix a second time and it reported that it was already installed.

I tried uninstalling an reinstalling mongoDB, no luck. Any clues?

0 votes

My collection is like this, but I want to update a nested object with {"env":"qa"} in my updated collection with java-driver:

{ "_id" : ObjectId("5b052eeff9290437b217b1ed"), "app" : "hike", "group" : [ { "env" : "prod" }, { "env" : "test" } ]}{ "_id" : ObjectId("5b052f36f9290437b217b1ee"), "app" : "viber", "group" : [ { "env" : "prod" }, { "env" : "test" } ]}

+1 vote

I am planning to add more storage to my exiting mongodb by adding external disk.
Can anyone suggest how to connect external disk to mongodb?

...