1。下载安装包:Java代码wgethttp://fastdl.mongodb.org/linux/mongodb-linux-i686-2.0.3.tgz2。解压:Java代码tar-zxvfmongodb-linux-i686-2.0.3.tgz3。指定安装目录:Java代码mvmongodb-...
分类:
数据库 时间:
2014-09-12 11:34:03
阅读次数:
273
For driver developers and people interested in the latest bugfixes, you can compile the driver from the latest source code on»Github. Go to Github and...
分类:
数据库 时间:
2014-09-12 11:31:23
阅读次数:
184
1.在MongoDB官网下载最新版本,并且安装 2.解压后在MongoDB文件目录下创建data文件夹和log文件夹,并且在log文件夹中新建mongodb.log文件 3.新建一个配置文件mongo.cfg##数据存储的位置dbpath=D:\Developments\MongoDB\da...
分类:
数据库 时间:
2014-09-12 10:09:43
阅读次数:
222
1. 下载Linux版本的 MongoDB数据库到官方的下载页面下载mongodb的Linux版本,32位还是64位根据自己的情况自行选择http://www.mongodb.org/downloads或者直接使用wget在服务器上下载wget http://fastdl.mongodb.org/l...
分类:
数据库 时间:
2014-09-12 10:05:23
阅读次数:
290
终于下定决心在某东购买了《python核心编程(二)》和《鸟哥linux,基础 (三)》。感觉学习linux最开始还是在虚拟机里面比较好,所以安装了VirtualBox,并下载了Cent OS 7. 安装完Cent OS发现完全没GUI...
分类:
数据库 时间:
2014-09-12 03:37:23
阅读次数:
449
1,在linux下安装客户端连接windows下 的MongoDBServer.2,远程连接ABI(Application Binary Interface)/API(Program);
分类:
数据库 时间:
2014-09-11 23:35:02
阅读次数:
257
1,Centos6.X yum安装mongoDB客户端和服务器端; yum -y install mongodb mongodb-server;基于epel repo.当前的mongoDB的版本为2.6.X2,配置具体配置见Ruiy的另外一篇文章关于Centos平台下编译安装mongoDB及配置;....
分类:
数据库 时间:
2014-09-11 22:18:52
阅读次数:
269
分布式锁的作用 一般来讲,锁的作用是在于解决不同的执行流之间对于同一个资源的竞争而产生的问题。分布式锁的作用就在于解决分布式程序中,分布在不同机器上的执行流对于资源的竞争问题。在mongodb的cluster上,...
分类:
数据库 时间:
2014-09-11 19:38:22
阅读次数:
291
基于 MongoDB 2.6
GeoJSON 格式
{ "type": "Point", "coordinates": [lon(经度),lat(纬度)]}
测试数据
db.point.test.insert({"address" : "南京 禄口国际机场","loc" : { "type": "Point", "coordinates": [118.783799,31.97923...
分类:
数据库 时间:
2014-09-11 19:30:02
阅读次数:
314
1.列出所有数据库>show dbs2.使用数据库>use memo3.列出当前数据库的collections>show collections4.显示当前正在操作的数据>db5.列出用户>show users6.新建数据库与数据集合>db>show dbs如果是新建就use一个新的数据库名。如果是...
分类:
数据库 时间:
2014-09-11 19:01:42
阅读次数:
203