[MongoDB]win7安装mongodb
[MongoDB]win7安装mongodb
系统环境:win7 64位
数据库:mongodb-win32-i386-v2.4
10100
第一步当然是下载
http://www.mongodb.org/downloads
第二步解压
mongodb-win32-i386-v2.4-latest.zip
例如解压到
D:\installsofts\mongodb
第三步 设置环境变量
把$MongoDB\bin 设置到系统的环境变量path中
第四步:配置文件配置
新建文件mongo.config 在解压的主目录下 例如这里D:\installsofts\mongodb
填写如下内容
##store data here 定义一个data文件夹用来存放数据
dbpath=D:\devsofts\mongodata
##all output go here 定义一个存放log文件的位置
logpath=D:\devsofts\mongolog\mongo.log
##log read and write operations
diaglog=3
这些路径如果不指定,将会在c盘下,这显然不太好管理。
第五步:安装启动MongoDB Server
在cmd下使用
D:\installsofts\mongodb\bin>mongod.exe --config D:\installsofts\mongodb\mongo.config --install
.....
Sat Jun 08 17:26:10.713 Service can be started from the command line with 'net s
tart MongoDB'
接着启动服务:
D:\installsofts\mongodb\bin>net start MongoDB
Mongo DB 服务正在启动 .
Mongo DB 服务已经启动成功。
第六步:
D:\installsofts\mongodb\bin>mongo
登陆mongodb的shell环境
关闭服务:net stop MongoDB
删除服务: D:\installsofts\mongodb\bin>mongod.exe --remove
当我们在去看data 和log 目录的时候 已经有新的文件产生了。