`

如何在windows上安装MongoDB(译)

阅读更多

 

原文出自:http://www.mkyong.com/mongodb/how-to-install-mongodb-on-windows/

返回目录:http://ysj5125094.iteye.com/blog/2192754  

 

How To Install MongoDB On Windows

 

In this tutorial, we will show you how to install MongoDB on Windows.

译:在本教程中,我们将告诉你如何在Windows上安装MongoDB。

 

  1. MongoDB 2.2.3
  2. Windows 7

Note
The MongoDB does not require installation, just download and extracts the zip file, configure the data directory and start it with command “mongod“.

译:注,MongoDB不需要安装,只要下载并提取ZIP文件,配置数据目录,使用"mongod"命令启动。

1. Download MongoDB

Download MongoDB from official MongoDB website. Choose Windows 32 bits or 64 bits. Unzip, extracts to your prefer location, for example : d:\mongodb\.

译:从官方网站MongoDB website下载MongoDB。选择Windows 32位或64位。解压,提取到你喜欢的位置,例如:D:\mongodb\。

2. Review MongoDB folder

In MongoDB, it contains only 10+ executable files (exe) in the bin folder. This is true, and that are the required files to MongoDB, it’s really hard to believe for a developer like me who come from a relation database background.

译:在MongoDB中,它仅包含10 +可执行文件(EXE),都在Bin文件夹中。对于一个来自关系型数据库背景的人来说,这真是一件很难的事情。

 

Figure : Files under $MongoDB/bin folder

图:$MongoDB/bin 文件夹下的所有文件。


Note
It’s recommended to add $MongoDB/bin to Windows environment variable, so that you can access the MongoDB’s commands in command prompt easily. 

译:注,建议增加 $MongoDB / bin 的Windows环境变量,这样你可以在命令提示符下很容易的使用MongoDB命令。

3. Configuration File

Create a MongoDB config file, it’s just a text file, for example : d:\mongodb\mongo.config

译:创建MongoDB配置文件,他可以只是一个文本文件,例如:D:\ mongodb \ mongo.config

 

d:\mongodb\mongo.config

 

##store data here
dbpath=D:\mongodb\data
 
##all output go here
logpath=D:\mongodb\log\mongo.log
 
##log read and write operations
diaglog=3

 

 

Note
MongoDB need a folder (data directory) to store its data. By default, it will store in “C:\data\db“, create this folder manually. MongoDB won’t create it for you. You can also specify an alternate data directory with --dbpath option.

译:MongoDB需要一个文件夹(数据目录)来存储它的数据。默认情况下,它将存储在“C:\data\db”,你需要手动创建该文件夹。MongoDB不会为你创造它。你也可以指定一个数据目录——dbpath 选项。

4. Run MongoDB server

Use mongod.exe --config d:\mongodb\mongo.config to start MongoDB server.

译:使用mongod.exe --config d:\mongodb\mongo.config命令来启动MongoDB服务器。

 

 

d:\mongodb\bin>mongod --config D:\mongodb\mongo.config
all output going to: D:\mongodb\log\mongo.log

 

5. Connect to MongoDB

Uses mongo.exe to connect to the started MongoDB server.

译:使用mongo.exe命令连接到已经启动的MongoDB服务器。

 

 

d:\mongodb\bin>mongo
MongoDB shell version: 2.2.3
connecting to: test
> //mongodb shell

 

6. MongoDB as Windows Service

Add MongoDB as Windows Service, so that MongoDB will start automatically following each system restart.

译:添加MongoDB作为Windows服务,使MongoDB会在每次系统重新启动时自动启动。

 

Install as Windows Service with --install.

 

d:\mongodb\bin> mongod --config D:\mongodb\mongo.config --install

 

 

A Windows service named “MongoDB” is created.

译:一个windows服务已经创建,名为"MongoDB"。


 

To start MongoDB Service

 

net start MongoDB

To stop MongoDB Service 

 

 

net stop MongoDB

 

To remove MongoDB Service

 

d:\mongodb\bin>mongod --remove

 

7. FAQs

1. Install MongoDB as Windows service on Windows 8, but hit “Access is denied.” error message :

译:在windows8中为MongoDB安装windows服务,但是遇到"访问被拒绝"错误消息。

 

C:\Users\mkyong2002>mongod --config D:\mongodb\mongo.config --install
Tue Jul 16 21:05:55.154 diagLogging level=3
Tue Jul 16 21:05:55.155 diagLogging using file D:\mongodb\data/diaglog.51e54533
Tue Jul 16 21:05:55.155 Trying to install Windows service 'MongoDB'
Tue Jul 16 21:05:55.155 Error connecting to the Service Control Manager: Access
is denied. (5)

 

 

To fix it, run the Command Prompt with Administrative Privileges – right click on the command prompt icon, select run as administrator.

译:修复,右键运行命令提示符图标,管理权限,以管理员身份运行。

 

References

  1. Install MongoDB on Windows
  2. MongoDB configuration options

 

 

 

 

  • 大小: 39.6 KB
  • 大小: 42.9 KB
0
2
分享到:
评论

相关推荐

    Windows上安装MongoDB:完整步骤详解.pdf

    通过以上步骤,你已经在Windows上成功安装并配置了MongoDB,可以开始进行数据库操作。对于初学者和有经验的开发人员来说,理解这些基础操作是至关重要的。同时,这份教程还可能包含常见问题的解决方案,帮助你在使用...

    Centos7下安装MongoDB

    Centos7下安装MongoDB是指在Centos7操作系统中安装和配置MongoDB数据库的过程。MongoDB是一个基于分布式文件存储的NoSQL数据库,由C++语言编写,运行稳定,性能高旨在为 WEB 应用提供可扩展的高性能数据存储解决方案...

    php windows下安装mongodb服务

    WAMP是Windows上的一个软件套件,它包含了运行PHP应用所需的Apache服务器、MySQL数据库和PHP解释器。MongoDB则是一种高性能、无模式的文档数据库,适用于处理大量数据。 1. **安装MongoDB**: - 下载MongoDB的...

    windows下mongodb的安装

    通过上述步骤,你已经成功地在 Windows 系统上安装了 MongoDB 数据库,并且了解了如何启动、验证安装以及进行一些基本的配置操作。MongoDB 提供了丰富的功能和灵活的数据模型,非常适合用于快速开发原型应用或构建大...

    linux安装mongodb教程

    在安装 MongoDB 之前,需要下载 MongoDB 的安装包。下载地址为 http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.0.7.tgz。下载完成后,需要将安装包拷贝至 /root/downloads/ 目录下,并解压 tar zxvf mongodb...

    windows32位mongodb

    5. **服务配置**:MongoDB通常以服务的形式运行在Windows上,名为"MongoDB Server"。安装过程中可以配置是否开机启动、设置服务账户和权限。 6. **数据目录**:默认情况下,MongoDB的数据文件存储在"C:\data\db...

    Windows下安装MongoDB

    在安装和启动MongoDB的过程中,您可能会遇到各种问题,如服务无法启动、连接失败等。此时,您可以查看MongoDB的日志文件来诊断问题,并根据错误信息进行相应的解决。同时,MongoDB社区和官方文档提供了大量的故障...

    windows_mongodb安装权限.zip

    本文将详细介绍如何在Windows上安装MongoDB,并为`admin`管理用户授予必要的权限,以便能够安全地操作数据库。 一、安装MongoDB 1. 下载安装包:首先,访问MongoDB官方网站...

    MongoDB8.0.1安装包带安装教程

    MongoDB8.0.1安装包带安装教程,适用于windows系统64位。 1、双机安装 mongodb-windows-x86_64-8.0.1-signed。 2、将 mongosh-2.3.2-win32-x64 压缩包解压后,打开bin文件夹复制“mongosh.ext“和”mongoshcryptv1....

    mongodb安装包及安装步骤(windows)

    总结,安装MongoDB在Windows上涉及下载安装包、配置安装路径、设置数据存储和日志目录、启动服务以及验证和安全配置等多个步骤。理解这些步骤有助于顺利搭建和管理MongoDB数据库,为你的项目提供高效的数据存储和...

    CentOS(Linux)离线安装MongoDB7.0详细教程(亲测可行)

    对于这种情况,本文将详细介绍如何在 CentOS (Linux) 系统中进行 MongoDB 7.0 的离线安装。本文不仅适用于网络受限的情况,同时也适用于那些出于安全考虑而避免在线安装的需求。本教程将分步骤介绍整个离线安装过程...

    Windows7-安装MongoDB

    Windows7-安装MongoDB,非常实用详细的MongoDB安装文档!

    windows下mongodb安装与使用整理

    - 在安装目录下创建两个文件夹,用于存放数据文件和日志文件: - 数据文件夹: `D:\mongodb\data\db` - 日志文件夹: `D:\mongodb\data\log` - 在日志文件夹下创建一个日志文件,例如命名为 `MongoDB.log`。 ##### ...

    Windows-MongoDB-4.4.1-x64.zip

    在Windows平台上,MongoDB提供了针对64位操作系统的版本,以充分利用硬件资源,提供更好的性能表现。本篇文章将深入探讨MongoDB 4.4.1在Windows 64位环境下的安装、配置、使用以及主要特性。 首先,安装MongoDB ...

    windows系统安装mongodb.zip

    1.NoSQL Manager for MongoDB使用.doc 2.最详细的Windows平台安装MongoDB教程.doc 3.安装包:mongodb-windows-x86_64-4.4.1-signed.msi

Global site tag (gtag.js) - Google Analytics