开发者社区> 技术小胖子> 正文

win7 64位下 mongodb安装及命令运行

简介:
+关注继续查看

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


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

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

下载最新的:

08140207-ab8415714b7e4d77853aea1daf561ec

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

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

08140215-03d219f7e41d42a2b581c0d8a5905bd

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

--install 是安装。


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

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

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

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

E:\mongodb246\bin>mongod.exe -help
Allowed 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 needed
Windows 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 serviceUser
Replication 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 stale
Replica set options:
 --replSet arg           arg is <setname>[/<optionalseedhostlist>]
 --replIndexPrefetch arg specify index prefetching 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刷新就好了。

打开是这么个界面:

08140045-096dd6f142e44f6ea8c30a65640ceaf

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

3:链接进入命令模式:

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

08140230-e1ab93a15a0342eab87e378b172faaf

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

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

08140241-5dcb4eaef11c42a5b17f8afa2330024

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

剩下的抽空再看了~~~







     本文转自cyq1162 51CTO博客,原文链接:http://blog.51cto.com/cyq1162/1291875,如需转载请自行联系原作者






版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。

相关文章
MongoDB从入门到实战之Docker快速安装MongoDB
MongoDB从入门到实战之Docker快速安装MongoDB
121 0
MongoDB---Windows安装MongoDB及其可视化工具
MongoDB---Windows安装MongoDB及其可视化工具
49 0
Linux平台安装MongoDB
Linux平台安装MongoDB
137 0
mongodb安装windows 服务 发生服务特定错误100
mongodb安装windows 服务 发生服务特定错误100
38 0
Windows安装MongoDB(图文解说详细版)
Windows安装MongoDB(图文解说详细版)
72 0
Docker部署安装MongoDB数据库
Docker部署安装MongoDB数据库
222 0
在centos系统上安装mongodb数据库
在centos系统上安装mongodb数据库
60 0
CentOS8 安装MongoDB 本地连接
MongoDB 是一个由 C++ 语言编写的基于分布式文件存储的数据库,MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。常用用于物流场景-地理位置信息存储、社交场景-储存储用户信息、物联网场景-监控数据、日志记录等,MongoDB在这些场景的应用比其他数据库有这巨大优势。
121 0
Linux服务器的MongoDB的安装和使用
Linux服务器的MongoDB的安装和使用
145 0
ELK搭建(十一):搭建MongoDB运行情况监控平台
mongoDB作为基于磁盘的非关系型数据库,JSON格式数据存储方式,具有优秀的查询效率。越来越多的场景使用到了MongoDB。在生产运维中,更需要我们能够实时的掌握mongo的运行情况,以方便我们数据库运行问题做出及时的调整和补救。
93 0
+关注
技术小胖子
文章
问答
视频
文章排行榜
最热
最新
相关电子书
更多
饿了么高级架构师陈东明:MongoDB是如何逐步提高可靠性的
立即下载
低代码开发师(初级)实战教程
立即下载
阿里巴巴DevOps 最佳实践手册
立即下载
相关实验场景
更多
相关镜像