mongodb初窥

作者: Blacker丶Boom | 来源:发表于2018-03-14 00:19 被阅读0次

启动MongoDB服务:
在 MongoDB 安装目录的 bin 目录下执行mongod

cd ~/mongodb/bin
mongod

show dbs -- 显示所有数据的列表
db -- 显示当前数据库对象或集合
use -- 连接到指定数据库

UNIX时间又称POSIX时间/新纪元时间(Epoch Time):从协调世界时1970年1月1日0时0分0秒起到现在的总秒数,不包括闰秒。正值表示1970以後,负值则表示1970年以前。

以下内容粘贴自github
MongoDB README

Welcome to MongoDB!

COMPONENTS

mongod - The database server.
mongos - Sharding router.
mongo - The database shell (uses interactive javascript).

UTILITIES

mongodump - Create a binary dump of the contents of a database.
mongorestore - Restore data from the output created by mongodump.
mongoexport - Export the contents of a collection to JSON or CSV.
mongoimport - Import data from JSON, CSV or TSV.
mongofiles - Put, get and delete files from GridFS.
mongostat - Show the status of a running mongod/mongos.
bsondump - Convert BSON files into human-readable formats.
mongoreplay - Traffic capture and replay tool.
mongotop - Track time spent reading and writing data.
install_compass - Installs MongoDB Compass for your platform.

BUILDING

See docs/building.md.

RUNNING

For command line options invoke:

$ ./mongod --help

To run a single server database:

$ sudo mkdir -p /data/db
$ ./mongod
$
$ # The mongo javascript shell connects to localhost and test database by default:
$ ./mongo
> help

INSTALLING COMPASS

You can install compass using the install_compass script packaged with MongoDB:

$ ./install_compass

This will download the appropriate MongoDB Compass package for your platform
and install it.

DRIVERS

Client drivers for most programming languages are available at
https://docs.mongodb.com/manual/applications/drivers/. Use the shell
("mongo") for administrative tasks.

BUG REPORTS

See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.

PACKAGING

Packages are created dynamically by the package.py script located in the
buildscripts directory. This will generate RPM and Debian packages.

DOCUMENTATION

https://docs.mongodb.com/manual/

CLOUD HOSTED MONGODB

https://www.mongodb.com/cloud/atlas

MAIL LISTS

https://groups.google.com/forum/#!forum/mongodb-user

A forum for technical questions about using MongoDB.

https://groups.google.com/forum/#!forum/mongodb-dev

A forum for technical questions about building and developing MongoDB.

LEARN MONGODB

https://university.mongodb.com/

相关文章

  • mongodb初窥

    启动MongoDB服务:在 MongoDB 安装目录的 bin 目录下执行mongod show dbs -- 显...

  • 初窥

    初窥世界的美好 白的风 白的肌肤 和盈盈一握的腰肢 在你的头发里 有一个蓝色大海的梦 蓝的帆船和蓝的浪花 自然是美...

  • 初窥

    这个积分管理项目已经到收尾的阶段了,感受良多。 对于错误处理这方面这周我的规划也更为清楚一些了。明天如果能够预期结...

  • 初窥南京

    古鸡鸣寺门外,一条长满爬山虎的墙。 城墙下的绿植。 1912街区,没有什么能过阻挡,我对自由的向往。 午后墙壁上斑...

  • 初窥HTTP

    要知道HTTP肯定要先知道WWW,下面我用思维导图来介绍下: 1,弄懂了上图的关系,接下来着重介绍HTTP。 先介...

  • 初窥Scrapy

    Scrapy是一个为了爬取网站数据,提取结构性数据而编写的应用框架。可以应用在包括数据挖掘,信息处理或存储历史数据...

  • RxSwift初窥

    前言 很久一段时间没写博客了,一方面是自己各种事情折腾,二是新项目开始用Swift了,边学边做忙死了,现在终于快忙...

  • block初窥

    一.block的简单使用 1.block声明 block变量的声明格式为: 返回值类型 (^block名字)(参数...

  • Hbase初窥

    Hbase能做什么 海量数据的存储 海量数据的查询 企业数据海量查询 项目需求功能 海量数据 实时查询 场景复杂 ...

  • AsyncDisplayKit 初窥

    了解 AsyncDisplayKit AsyncDisplayKit的基本单位是节点 Node。一个Asdispl...

网友评论

    本文标题:mongodb初窥

    本文链接:https://www.haomeiwen.com/subject/lmlqxftx.html