zoukankan      html  css  js  c++  java
  • Install MongoDB on Windows

    Overview

    Use this tutorial to install MongoDB on a Windows systems.

    PLATFORM SUPPORT

    Starting in version 2.2, MongoDB does not support Windows XP. Please use a more recent version of Windows to use more recent releases of MongoDB.

    IMPORTANT

    If you are running any edition of Windows Server 2008 R2 or Windows 7, please install a hotfix to resolve an issue with memory mapped files on Windows.

    Install MongoDB

    Determine which MongoDB build you need.

    There are three builds of MongoDB for Windows:

    MongoDB for Windows Server 2008 R2 edition (i.e. 2008R2) runs only on Windows Server 2008 R2, Windows 7 64-bit, and newer versions of Windows. This build takes advantage of recent enhancements to the Windows Platform and cannot operate on older versions of Windows.

    MongoDB for Windows 64-bit runs on any 64-bit version of Windows newer than Windows XP, including Windows Server 2008 R2 and Windows 7 64-bit.

    MongoDB for Windows 32-bit runs on any 32-bit version of Windows newer than Windows XP. 32-bit versions of MongoDB are only intended for older systems and for use in testing and development systems. 32-bit versions of MongoDB only support databases smaller than 2GB.

    To find which version of Windows you are running, enter the following command in the Command Prompt:

    wmic os get osarchitecture
     

    Download MongoDB for Windows.

    Download the latest production release of MongoDB from the MongoDB downloads page. Ensure you download the correct version of MongoDB for your Windows system. The 64-bit versions of MongoDB does not work with 32-bit Windows.

    Install the downloaded file.

    In Windows Explorer, locate the downloaded MongoDB msi file, which typically is located in the default Downloads folder. Double-click the msi file. A set of screens will appear to guide you through the installation process.

    Move the MongoDB folder to another location (optional).

    To move the MongoDB folder, you must issue the move command as an Administrator. For example, to move the folder to C:mongodb:

    Select Start Menu > All Programs > Accessories.

    Right-click Command Prompt and select Run as Administrator from the popup menu.

    Issue the following commands:

    cd 
    move C:mongodb-win32-* C:mongodb

    MongoDB is self-contained and does not have any other system dependencies. You can run MongoDB from any folder you choose. You may install MongoDB in any folder (e.g.
    D: estmongodb)

    Run MongoDB

    WARNING

    Do not make mongod.exe visible on public networks without running in “Secure Mode” with the auth setting. MongoDB is designed to be run in trusted environments, and the database does not enable “Secure Mode” by default.

     

    Set up the MongoDB environment.

    MongoDB requires a data directory to store all data. MongoDB’s default data directory path isdatadb. Create this folder using the following commands from a Command Prompt:

    md datadb

    You can specify an alternate path for data files using the --dbpath option to mongod.exe, for example:

    C:mongodbinmongod.exe --dbpath d:	estmongodbdata

    If your path includes spaces, enclose the entire path in double quotes, for example:

    C:mongodbinmongod.exe --dbpath "d:	estmongo db data"
     

    Start MongoDB.

    To start MongoDB, run mongod.exe. For example, from the Command Prompt:

    C:Program FilesMongoDBinmongod.exe

    This starts the main MongoDB database process. The waiting for connections message in the console output indicates that the mongod.exe process is running successfully.

    Depending on the security level of your system, Windows may pop up a Security Alert dialog box about blocking “some features” of C:Program FilesMongoDBinmongod.exe from communicating on networks. All users should select Private Networks, such as my home orwork network and click Allow access. For additional information on security and MongoDB, please see the Security Documentation.

     

    Connect to MongoDB.

    To connect to MongoDB through the mongo.exe shell, open another Command Prompt. When connecting, specify the data directory if necessary. This step provides several example connection commands.

    If your MongoDB installation uses the default data directory, connect without specifying the data directory:

    C:mongodbinmongo.exe

    If you installation uses a different data directory, specify the directory when connecting, as in this example:

    C:mongodbinmongod.exe --dbpath d:	estmongodbdata

    If your path includes spaces, enclose the entire path in double quotes. For example:

    C:mongodbinmongod.exe --dbpath "d:	estmongo db data"

    If you want to develop applications using .NET, see the documentation of C# and MongoDB for more information.

     

    Begin using MongoDB.

    To begin using MongoDB, see Getting Started with MongoDB. Also consider the Production Notes document before deploying MongoDB in a production environment.

    Configure a Windows Service for MongoDB

    NOTE

    There is a known issue for MongoDB 2.6.0, SERVER-13515, which prevents the use of the instructions in this section. For MongoDB 2.6.0, use Manually Create a Windows Service for MongoDB to create a Windows Service for MongoDB instead.

     

    Configure directories and files.

    Create a configuration file and a directory path for MongoDB log output (logpath):

    Create a specific directory for MongoDB log files:

    md "C:Program FilesMongoDBlog"

    In the Command Prompt, create a configuration file for the logpath option for MongoDB:

    echo logpath=C:Program FilesMongoDBlogmongo.log > "C:Program FilesMongoDBmongod.cfg"
     

    Run the MongoDB service.

    Run all of the following commands in Command Prompt with “Administrative Privileges:”

    Install the MongoDB service. For --install to succeed, you must specify the logpath run-time option.

    "C:Program FilesMongoDBinmongod.exe" --config "C:Program FilesMongoDBmongod.cfg" --install

    Modify the path to the mongod.cfg file as needed.

    To use an alternate dbpath, specify the path in the configuration file (e.g. C:ProgramFilesMongoDBmongod.cfg) or on the command line with the --dbpath option.

    If the dbpath directory does not exist, mongod.exe will not start. The default value for dbpath isdatadb.

    If needed, you can install services for multiple instances of mongod.exe or mongos.exe. Install each service with a unique --serviceName and --serviceDisplayName. Use multiple instances only when sufficient system resources exist and your system design requires it.

     

    Stop or remove the MongoDB service as needed.

    To stop the MongoDB service use the following command:

    net stop MongoDB

    To remove the MongoDB service use the following command:

    "C:Program FilesMongoDBinmongod.exe" --remove

    Manually Create a Windows Service for MongoDB

    The following procedure assumes you have installed MongoDB using the MSI installer, with the default path C:Program FilesMongoDB 2.6 Standard.

    If you have installed in an alternative directory, you will need to adjust the paths as appropriate.

     

    Open an Administrator command prompt.

    Windows 7 / Vista / Server 2008 (and R2)

    Press Win R, then type cmd, then press Ctrl Shift Enter.

    Windows 8

    Press Win X, then press A.

    Execute the remaining steps from the Administrator command prompt.

     

    Create directories.

    Create directories for your database and log files:

    mkdir c:datadb
    mkdir c:datalog
     

    Create a configuration file.

    Create a configuration file. This file can include any of the configuration options for mongod, but must include a valid setting for logpath:

    The following creates a configuration file, specifying both the logpath and the dbpath settings in the configuration file:

    echo logpath=c:datalogmongod.log> "C:Program FilesMongoDB 2.6 Standardmongod.cfg"
    echo dbpath=c:datadb>> "C:Program FilesMongoDB 2.6 Standardmongod.cfg"

    Create the MongoDB service.

    Create the MongoDB service.

    sc.exe create MongoDB binPath= ""C:Program FilesMongoDB 2.6 Standardinmongod.exe" --service --config="C:Program FilesMongoDB 2.6 Standardmongod.cfg"" DisplayName= "MongoDB 2.6 Standard" start= "auto"
    

    sc.exe requires a space between “=” and the configuration values (eg “binPath= ”), and a “” to escape double quotes.

    If successfully created, the following log message will display:

    [SC] CreateService SUCCESS
    
    5

    Start the MongoDB service.

    net start MongoDB
    
    6

    Stop or remove the MongoDB service as needed.

    To stop the MongoDB service, use the following command:

    net stop MongoDB
    

    To remove the MongoDB service, first stop the service and then run the following command:

    sc.exe delete MongoDB
  • 相关阅读:
    操作MS SQL Server 存储过程的类(外加ASP.NET MessageBox类)
    利用DataGrid的超级联接传值
    操作数据库系统信息
    鼠标指向表格中的一行时,该行背景色改变;点击行时,突出显示标记颜色
    asp.net下的UBB代码[C#]
    java 为什么要序列化
    oracle调用java方法的例子(下面所有代码都是在sql/plus
    oracle存储过程
    一个Java程序员应该掌握的10项技能
    七款天气预报代码
  • 原文地址:https://www.cnblogs.com/ghgyj/p/4014845.html
Copyright © 2011-2022 走看看