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

本文涉及的产品
云数据库 MongoDB,独享型 2核8GB
推荐场景:
构建全方位客户视图
简介:

有网友老催我把框架加上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 -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刷新就好了。

打开是这么个界面:

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

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/

剩下的抽空再看了~~~







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






相关实践学习
MongoDB数据库入门
MongoDB数据库入门实验。
快速掌握 MongoDB 数据库
本课程主要讲解MongoDB数据库的基本知识,包括MongoDB数据库的安装、配置、服务的启动、数据的CRUD操作函数使用、MongoDB索引的使用(唯一索引、地理索引、过期索引、全文索引等)、MapReduce操作实现、用户管理、Java对MongoDB的操作支持(基于2.x驱动与3.x驱动的完全讲解)。 通过学习此课程,读者将具备MongoDB数据库的开发能力,并且能够使用MongoDB进行项目开发。 &nbsp; 相关的阿里云产品:云数据库 MongoDB版 云数据库MongoDB版支持ReplicaSet和Sharding两种部署架构,具备安全审计,时间点备份等多项企业能力。在互联网、物联网、游戏、金融等领域被广泛采用。 云数据库MongoDB版(ApsaraDB for MongoDB)完全兼容MongoDB协议,基于飞天分布式系统和高可靠存储引擎,提供多节点高可用架构、弹性扩容、容灾、备份回滚、性能优化等解决方案。 产品详情: https://www.aliyun.com/product/mongodb
相关文章
|
3天前
|
存储 JSON NoSQL
MongoDB常用命令
MongoDB常用命令
10 1
MongoDB常用命令
|
24天前
|
NoSQL Ubuntu Linux
Linux平台安装MongoDB
10月更文挑战第11天
29 5
|
24天前
|
NoSQL Shell MongoDB
Mac OSX 平台安装 MongoDB
10月更文挑战第11天
17 4
|
25天前
|
NoSQL Shell MongoDB
Windows 平台安装 MongoDB
10月更文挑战第10天
36 0
Windows 平台安装 MongoDB
|
1月前
|
存储 NoSQL MongoDB
docker安装Mongodb
这篇文章详细说明了如何使用Docker安装MongoDB,包括拉取镜像、创建并运行容器、数据持久化存储以及访问容器内的MongoDB服务的具体步骤。
71 1
|
1月前
|
NoSQL MongoDB 数据库
MongoDB是一个NoSQL数据库,有着多种不同的命令和操作。以下是一些常见的MongoDB命令:
一些常用的MongoDB命令,如数据库和集合的管理、数据的插入、查询、更新、删除以及聚合操作等。
20 1
|
2月前
|
NoSQL MongoDB 数据库
python3操作MongoDB的crud以及聚合案例,代码可直接运行(python经典编程案例)
这篇文章提供了使用Python操作MongoDB数据库进行CRUD(创建、读取、更新、删除)操作的详细代码示例,以及如何执行聚合查询的案例。
30 6
|
2月前
|
SQL NoSQL 安全
MongoDB命令汇总
这篇文章提供了一个MongoDB命令的汇总,包括数据库操作、DDL和DML命令、安全管理、数据备份恢复、远程连接管理和聚合操作等。
35 2
|
3月前
|
JavaScript NoSQL 前端开发
|
1月前
|
存储 关系型数据库 MySQL
一个项目用5款数据库?MySQL、PostgreSQL、ClickHouse、MongoDB区别,适用场景
一个项目用5款数据库?MySQL、PostgreSQL、ClickHouse、MongoDB——特点、性能、扩展性、安全性、适用场景比较