有网友老催我把框架加上mongodb的支持,于是偶尔抽空看了看相关的文章。

今天有缘,就把mongodb安装了一下,中间遇到了小小的问题,So,把整个过程记录一下:

1:先上官网:http://www.mongodb.org/downloads

下载最新的:

下载完后文件名为:mongodb-win32-x86_64-2.4.6.zip
解压到当你要安装的目录,然后我把目录名给改短了一下,叫mongodb246,放在了e盘下。

2:用cmd运行目录下bin下的mongod.exe来安装服务:

--reinstall 是重新安装,首次安装没有开--reset参数,所以用了重装参数。

--install 是安装。

另外中间我犯了一个错,把logpath 弄成了文件夹(本应该是一个文件名称),结果搞了一个失败的服务,还删不掉。。悲催。

(后来重启电脑后,那个删不掉的服务自己消失了)

具体的参数如下,比较多,简单的就是像我上面的图一样,参考着写就可以了:

如果看不懂E文,可以复制拿去Google翻译文档。

E:\mongodb246\bin>mongod.exe -helpAllowed options:
General options:  -h [ --help ]               show this usage information  --version                   show version information  -f [ --config ] arg         configuration file specifying additional options  -v [ --verbose ]            be more verbose (include multiple times for more                              verbosity e.g. -vvvvv)  --quiet                     quieter output  --port arg                  specify port number - 27017 by default  --bind_ip arg               comma separated list of ip addresses to listen on                              - all local ips by default  --maxConns arg              max number of simultaneous connections - 20000 by                              default  --logpath arg               log file to send write to instead of stdout - has                              to be a file, not directory  --logappend                 append to logpath instead of over-writing  --pidfilepath arg           full path to pidfile (if not set, no pidfile is                              created)  --keyFile arg               private key for cluster authentication  --setParameter arg          Set a configurable parameter  --auth                      run with security  --cpu                       periodically show cpu and iowait utilization  --dbpath arg                directory for datafiles - defaults to \data\db\  --diaglog arg               0=off 1=W 2=R 3=both 7=W+some reads  --directoryperdb            each database will be stored in a separate                              directory  --ipv6                      enable IPv6 support (disabled by default)  --journal                   enable journaling  --journalCommitInterval arg how often to group/batch commit (ms)  --journalOptions arg        journal diagnostic options  --jsonp                     allow JSONP access via http (has security                              implications)  --noauth                    run without security  --nohttpinterface           disable http interface  --nojournal                 disable journaling (journaling is on by default                              for 64 bit)  --noprealloc                disable data file preallocation - will often hurt                              performance  --noscripting               disable scripting engine  --notablescan               do not allow table scans  --nssize arg (=16)          .ns file size (in MB) for new databases  --profile arg               0=off 1=slow, 2=all  --quota                     limits each database to a certain number of files                              (8 default)  --quotaFiles arg            number of files allowed per db, requires --quota  --repair                    run repair on all dbs  --repairpath arg            root directory for repair files - defaults to                              dbpath  --rest                      turn on simple rest api  --slowms arg (=100)         value of slow for profile and console log  --smallfiles                use a smaller default file size  --syncdelay arg (=60)       seconds between disk syncs (0=never, but not                              recommended)  --sysinfo                   print some diagnostic system information  --upgrade                   upgrade db if neededWindows Service Control Manager options:  --install                install Windows service  --remove                 remove Windows service  --reinstall              reinstall Windows service (equivalent to --remove                           followed by --install)  --serviceName arg        Windows service name  --serviceDisplayName arg Windows service display name  --serviceDescription arg Windows service description  --serviceUser arg        account for service execution  --servicePassword arg    password used to authenticate serviceUserReplication options:  --oplogSize arg       size to use (in MB) for replication op log. default is                        5% of disk space (i.e. large is good)Master/slave options (old; use replica sets instead):  --master              master mode  --slave               slave mode  --source arg          when slave: specify master as <server:port>  --only arg            when slave: specify a single database to replicate  --slavedelay arg      specify delay (in seconds) to be used when applying                        master ops to slave  --autoresync          automatically resync if slave data is staleReplica set options:  --replSet arg           arg is <setname>[/<optionalseedhostlist>]  --replIndexPrefetch arg specify index prefetching behavior (if secondary)                          [none|_id_only|all]Sharding options:  --configsvr           declare this is a config db of a cluster; default port                        27019; default dir /data/configdb  --shardsvr            declare this is a shard db of a cluster; default port                        27018

安装好后,浏览器运行:http://127.0.0.1:28017 打开有东西就说明装上了,按理是localhost:端口可上的,不知我电脑是有缓存还是咋的,没反应,换上IP刷新就好了。

打开是这么个界面:

目前着实没看出什么信息,基本正常到此,可能会被卡住,不知道后续干什么了。

3:链接进入命令模式:

正常来说,在cmd命令下,运行E:\>mongodb246\bin\mongo.exe,(路径自己弄对)直接就连上了:

之后可以运行点命令测试下,如:

相关基础命令可以看:http://docs.mongodb.org/manual/tutorial/getting-started/

再接下来,就是怎么用代码开发的问题了,详情见:http://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/

剩下的抽空再看了~~~

win7 64位下 mongodb安装及命令运行的更多相关文章

  1. win7 64位下如何安装配置mysql-5.7.4-m14-winx64

    win7 64位下如何安装配置mysql-5.7.4-m14-winx641. mysql-5.7.4-m14-winx64.zip下载 官方网站下载地址:http://dev.mysql.com/g ...

  2. [转]win7 64位下完美安装64位oracle 11g

    最近在网上搜如何在win764位的情况下安装64位的oracle,并且使用PLSQL Developer来管理oracle. 于是开始在oracle官网下载数据库,下载是一件很简单的事情,问题是在百度 ...

  3. win7 64位下如何安装配置mysql-5.7.7-rc-winx64

    距离上次安装MySQL已经过去好久了.步骤这些,有可能会忘记.简单记录一下吧.(参考了一些网络上的博客.) 1.mysql-5.7.5-m15-winx64.zip下载 官方网站下载地址: http: ...

  4. win7 64位下如何安装配置mysql-5.7.4-m14-winx64(安装记录)

    1.   mysql-5.7.4-m14-winx64.zip下载 官方网站下载地址:http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.17 ...

  5. win7(64)位下WinDbg64调试VMware10下的win7(32位)

    win7(64)位下WinDbg64调试VMware10下的win7(32位) 一 Windbg32位还是64位的选择 参考文档<Windbg 32位版本和64位版本的选择> http:/ ...

  6. [转]win7 64位下android开发环境的搭建

    本文转自:http://www.cfanz.cn/index.php?c=article&a=read&id=65289 最近换了新电脑,装了win7 64位系统,安装了各种开发环境, ...

  7. win7 64位下android开发环境的搭建

    本文转自:http://www.cfanz.cn/index.php?c=article&a=read&id=65289 最近换了新电脑,装了win7 64位系统,安装了各种开发环境, ...

  8. 2 pygraphviz在windows10 64位下的安装问题(反斜杠的血案)

    可以负责任的说,这篇文档是windows10安装pygraphviz中,在中文技术网站中最新的文档,没有之一.是自己完全结合各种问题,包括调试等,总结出来的. 问题来源:主要是可视化RvNN网络的树结 ...

  9. 偶然碰到的Win7 64位下CHM 的问题解决

    最近下了几个沪江资料,都是chm格式的,但是在win7 64位下,都显示不了里面的音频和视频flash之类的控件,虽然可以通过源文件的方式打开视频文件,但是很麻烦.    网上似乎碰到的人也不是很多, ...

随机推荐

  1. 联想笔记本如何开启笔记本的VT-x虚拟化技术功能

    虚拟化技术支持,需几个方面的条件支持:芯片组自身支持.BIOS提供支持.处理器自身支持.操作系统支持. 操作系统方面,主流操作系统均支持VMM管理,因此无需考虑. 而芯片组方面,从Intel 945( ...

  2. C# 利用 DbUp 通过多个SQL Script文件完成对数据库的更新

    详细流程请参考(本人测试过,很好用): http://dbup.github.io/ 配置截图: 程序如下: static int Main(string[] args) { var connecti ...

  3. 关于安装Apache之后,解析PHP的配置

    需要配置四个地方 LoadModule php5_module modules/libphp5.soServerName localhost:80DirectoryIndex index.phpAdd ...

  4. Delphi的三目运算 ifthen 和iif

    system.Math和system.StrUtils都有IfThen方法, 返回字符串和 返回 数值型 system.Math.IfThen(vehicle.MILE=0,0,StrToFloat( ...

  5. wpf 仿QQ图片查看器

    参考博客 WPF下的仿QQ图片查看器 wpf图片查看器,支持鼠标滚动缩放拖拽 实现效果 主要参考的WPF下的仿QQ图片查看器,原博主只给出了部分代码. 没有完成的部分 1.右下角缩略图是原图不是缩略图 ...

  6. The innocence is brilliant.

    [11.20~12.20] 2016年的最后一个月在听Avril的歌,感觉她发音状态好好(对此建议去听<Wish You Were Here>!!!) 到此12月份的活都干完了吧~还剩最后 ...

  7. Shell scripts to Create a local dir base on the time.

    #!/bin/bash DATETIME=`date +%Y%m%d%H%M%S` echo "datetime = $DATETIME" mkdir $DATETIME # cd ...

  8. mac rvm升级ruby

    rvm是什么?为什么要安装rvm呢,因为rvm可以让你拥有多个版本的Ruby,并且可以在多个版本之间自由切换.第一步:安装rvm $ curl -L get.rvm.io | bash -s stab ...

  9. 【原】iOS学习之Masonry第三方约束

    1.Masonry概述 目前最流行的Autolayout第三方框架 用优雅的代码方式编写Autolayout 省去了苹果官方恶心的Autolayout代码 大大提高了开发效率 框架地址:https:/ ...

  10. BZOJ2498 : Xavier is Learning to Count

    考虑容斥,通过$Bell(p)$的时间枚举所有等价情况. 对于一种情况,强制了一个等价类里面的数都要相同,其它的可以相同也可以不同. 这方案数显然可以通过多项式乘法求得,乘上容斥系数$(-1)^{p- ...