在Windows 7 - 64位上安装Mongodb

时间:2016-05-10 05:52:55

标签: mongodb

我是mongodb的新手并没有得到如何安装它,因为我发现视频或任何有用的资源来实现相同的目标。请帮我按照确切的步骤在Windows 7上安装mongodb。我尝试从网站下载最新版本的mongodb,但不成功。非常感谢。

此致

维杰

4 个答案:

答案 0 :(得分:9)

步骤:

  1. 下载MongoDB此链接link
  2. 查看MongoDB文件夹。

    在MongoDB中,它仅包含bin文件夹中的可执行文件10 Plus(exe)。这是真的,那就是MongoDB所需的文件,对于像我这样从关系数据库背景中吃掉的开发人员来说真的很难相信。

    path:- Files under $MongoDB/bin folder
    
  3. 配置文件

    创建一个MongoDB配置文件,它只是一个文本文件,例如C:\mongodb\mongo.config

    #store data here
    dbpath=C:\mongodb\data
    
    \\all output go here
    logpath=C:\mongodb\log\mongo.log
    
    \\log read and write operations
    diaglog=3
    
  4. 运行MongoDB服务器

    使用mongod.exe --config C:\mongodb\mongo.config启动MongoDB服务器。

    C:\mongodb\bin>mongod --config C:\mongodb\mongo.config
    

    所有输出都转到:C:\mongodb\log\mongo.log

  5. 连接到MongoDB

    使用mongo.exe连接到已启动的MongoDB服务器。

    C:\ mongodb的\ BIN>蒙戈 MongoDB shell版本:2.2.3 连接到:测试

      

    // mongodb shell

  6. MongoDB作为Windows服务

    将MongoDB添加为Windows服务,以便MongoDB在每次系统重启后自动启动。 使用--install安装为Windows服务。

    C:\mongodb\bin> mongod --config C:\mongodb\mongo.config --install
    

    创建名为“MongoDB”的Windows服务。

    启动MongoDB服务:

    net start MongoDB
    

    停止MongoDB服务

    net stop MongoDB
    

    删除MongoDB服务

    C:\mongodb\bin>mongod --remove
    

    Reference Link Install Mongodb

答案 1 :(得分:1)

  1. 首先从这里下载了mongodb:https://www.mongodb.com/download-center?jmp=nav#community
  2. 解压缩目录示例C:\..\MongoDB
  3. 中的文件夹
  4. 您打开命令提示符(demarrer> Invite commande)
  5. 您转到bin所在的文件夹,并在命令提示符下写入:cd c:\..\mongodb\bin
  6. 然后您必须指定要放置数据的目录,您可以创建一个名为:MongoData的文件夹,并在命令提示符上显示:Mongod --dbpath C:\..\MongoData

答案 2 :(得分:1)

对于mongoDB 4.x,我在“等待几分钟...”中多次挂断了安装。 根据从网上搜索答案的建议,我更改为v3.2.21-1。它的安装速度和一年前一样快。

答案 3 :(得分:0)

here下载版本4.0.20

并按照here

中的步骤进行操作

祝一切顺利!