Я пытаюсь установить mongodb на свой локальный компьютер. У меня Windows 7 и 64 бит. Я следую этим инструкциям, которые приведены на сайте Монго:
64-bit binaries:
Download and extract the 64-bit .zip.
Unzip the downloaded binary package to the location of your choice. You may want to
rename mongo-xxxxxxx to just "mongo" for convenience.
Create a data directory:
By default MongoDB will store data in \data\db, but it won't
automatically create that folder, so we do so here:
C:\> mkdir \data
C:\> mkdir \data\db
Or you can do this from the Windows Explorer, of course.
If you prefer to place datafiles elsewhere, use the --dbpath command line parameter
when starting mongod.exe. Run and connect to the server
The important binaries for a first run are:
mongod.exe - the database server. Try mongod --help to see startup options.
mongo.exe - the administrative shell
To run the database, click mongod.exe in Explorer, or run it from a CMD window.
C:\> cd \mongodb\bin
C:\mongodb\bin> mongod
Note: It is also possible to run the server as a Windows Service. But we can do that
later.
Когда я выполняю эти шаги, я получаю следующую ошибку:
'C:\' is not recognized as an internal or external command, operable program or batch
file.
Я не уверен, что происходит, я точно следовал указаниям. Я извлек zip-файл на моем диске c как mongodb. Затем я создал папку данных на моем диске c и папку db внутри папки данных. Я запускаю строку Windows CMD и делаю, как они предлагают, и я получаю вышеупомянутую ошибку. Может кто-нибудь помочь, пожалуйста. Спасибо.