有网友老催我把框架加上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. day4(homework)

    第八单元 1) 将用户信息数据库文件和组信息数据库文件纵向合并为一个文件/1.txt(覆盖) 2) 将用户信息数据库文件和用户密码数据库文件纵向合并为一个文件/2.txt(追加) 3) 将/1.txt ...

  2. Integer to English Words

    https://leetcode.com/problems/integer-to-english-words/ 这题记得是<c 和指针>里的一道习题,三年前花了一晚上做过.现在花了大概40 ...

  3. SQL Server架构 -- 数据库文件和文件组

    在SQL SERVER中,数据库在硬盘上的存储方式和普通文件在Windows中的存储方式没有什么不同,也是在特定文件夹下创建不同的文件,然后经过文件存储系统去抓取数据信息.理解文件和文件组的概念可以帮 ...

  4. Win10 UI入门RelativePanel(2)

    自适应 1) Gif: 添加动画 2)

  5. 浅谈UDP(数据包长度,收包能力,丢包及进程结构选择)

    UDP数据包长度 UDP数据包的理论长度 udp数据包的理论长度是多少,合适的udp数据包应该是多少呢?从TCP-IP详解卷一第11章的udp数据包的包头可以看出,udp的最大包长度是2^16-1的个 ...

  6. 在Mac中像Windows一样查看Tomcat控制台信息

    在Windows系统中,通过startup.bat启动Tomcat之后会打开一个控制台,输出日志信息,在系统调试过程中,也会随时输入日志或错误信息,对开发很有帮助. 在Mac中,通过startup.s ...

  7. UWP 颜色选择器(ColorPicker) 和 自定义的Flyout(AdvancedFlyout)

    ColorPicker 故事背景 项目里面需要一个像Winfrom里面那样的颜色选择器,如下图所示: 在网上看了一下.没有现成的东东可以拿来使用.大概查看了一下关于颜色的一些知识,想着没人种树,那就由 ...

  8. [原创]Centos7 从零编译配置Redis

    序言 Memcached 是一个高性能的分布式内存对象缓存系统,用于动态Web应用以减轻数据库负载.它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提高动态.数据库驱动网站的速度. Memca ...

  9. Puppet自动化运维-C/S架构概念(1)

    1.Puppet工作模式 (1)采用C/S架构(即是server<=>client) (2)Master 会对自己形成自签名CA中心,对Agent端进行证书颁发,验证通过才允许Agent( ...

  10. webrtc中APM(AudioProcessing module)的使用2

    这个其实就是从Audio_processing.h中拿出来的. APM should be placed in the signal chain as close to the audio hardw ...