MongoDB 入门命令 查看当前数据库 > show dbs admin 0.000GB config 0.000GB local 0.000GB > -- use databaseName 选库 > use test switched to db test > -- show tables/collections 查看当前库下的collection > show tables > show collections > 基础操作 Mongodb的库是隐式创建,你…
一.MongoDB安装配置 1.获取最新版本号: wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.2.tgz 2.解压缩就可以运行 tar zxvf mongodb-linux-x86_64-2.0.2.tgz tar zxvf mongodb-linux-x86_64-2.0.2.tgz cd /usr/mongodb-linux-x86_64-2.0.2/bin 可是在执行前,须要创建mongodb须要的存放数据和日…