`
chenzhou123520
  • 浏览: 4259463 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Mongodb help命令介绍

阅读更多

 

首先切换到Mongodb bin目录
第一步:按如下格式输入命令
C:\Documents and Settings\chenzhou>D:
D:\>cd D:\Mongodb\bin
第二步:键入help命令
D:\Mongodb\bin>mongod --help
Mon Dec 12 19:47:52
Mon Dec 12 19:47:52 ** NOTE: when using MongoDB 32 bit, you are limited to about 2 gigabytes of data
Mon Dec 12 19:47:52 **       see http://blog.mongodb.org/post/137788967/32-bit-limitations
Mon Dec 12 19:47:52 **       with --journal, the limit is lower
Mon Dec 12 19:47:52
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【端口设置】
  --bind_ip arg          comma separated list of ip addresses to listen on  - all local ips by default
  --maxConns arg         max number of simultaneous connections【最大连接数设置】
  --objcheck             inspect client data for validity on receipt
  --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 (only for  replica sets)
  --auth                 run with security
  --cpu                  periodically show cpu and iowait utilization
  --dbpath arg           directory for datafiles【配置数据库所在的路径】
  --diaglog arg          0=off 1=W 2=R 3=both 7=W+some reads
  --directoryperdb       each database will be stored in a separate  directory
  --journal              enable journaling【启用日志】
  --journalOptions arg       journal diagnostic options
  --journalCommitInterval arg      how often to group/batch commit (ms)
  --ipv6                           enable IPv6 support (disabled by default)
  --jsonp                          allow JSONP access via http (has security implications)【允许通过http访问jsonp格式数据(有安全隐患)】
  --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 allower per db, requires --quota
  --rest                           turn on simple rest api
  --repair                         run repair on all dbs
  --repairpath arg                 root directory for repair files - defaults to dbpath
  --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 mongodb service【安装Mongodb服务】
  --remove                        remove mongodb service【删除Mongodb服务】
  --reinstall                     reinstall mongodb service (equivilant of mongod  --remove followed by mongod --install)
  --serviceName arg               windows service name【Mongodb服务名称】
  --serviceDisplayName arg        windows service display name【Mongodb服务显示名称】
  --serviceDescription arg        windows service description
  --serviceUser arg               user name service executes as
  --servicePassword arg           password used to authenticate serviceUser

Replication options:
  --fastsync                      indicate that this instance is starting from a dbpath  snapshot of the repl peer
  --oplogSize arg                 size limit (in MB) for op log

Master/slave options:
  --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>]

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
  --noMoveParanoia                turn off paranoid saving of data for moveChunk.  this is on by default for now, but default will switch
  
分享到:
评论

相关推荐

    mongodb常用命令大全

    ### MongoDB常用命令详解 #### 一、数据库管理 在MongoDB中,数据库是存储文档的容器,通过一系列的命令可以方便地对数据库进行管理和操作。 ##### 1. 帮助命令 (Help) - **命令格式**: `help`, `db.help()`, `db...

    MongoDB_命令.docx 命令集合

    5. **MongoDB命令帮助**:如果你想知道MongoDB支持哪些命令,可以使用`help`。它会显示一系列基本的数据库和集合操作命令。更具体的,你可以输入`db.help()`来查看当前数据库支持的方法,或者`db.&lt;collection&gt;.help...

    详解MongoDB管理命令

    1. `help`:显示MongoDB的帮助信息,提供关于不同类别命令的概述。 2. `db.help()`:提供当前数据库级别的帮助,包括对数据库对象的操作。 3. `show dbs`:列出所有已创建的数据库。 4. `use &lt;db_name&gt;`:切换到指定...

    mongoDb 常用命令

    mongodb php distinct command --- mongoDb 常用命令

    MongoDB的help命令和脚本的操作.pdf

    本文将深入探讨 MongoDB 的 `help` 命令以及如何在 Shell 中执行 JavaScript (JS) 脚本。 1. **MongoDB 的 `help` 命令** `help` 命令是 MongoDB 提供的一个内置工具,用于获取有关数据库操作的帮助信息。它的...

    MongoDB数据库简单介绍

    ### MongoDB数据库简单介绍 #### MongoDB概述 MongoDB是一款开源、基于分布式文件存储的NoSQL数据库系统,它使用C++语言编写。与传统的关系型数据库不同,MongoDB采用文档数据模型来存储数据,这种数据模型非常灵活...

    mongodb安装和实用命令

    MongoDB 安装和实用命令 MongoDB 是一个基于分布式文件存储的开源数据库系统。它的主要特点是高性能、易扩展、灵活的数据模型等。下面是 MongoDB 的安装和实用命令。 安装 MongoDB 1. 下载 MongoDB 的安装包,...

    mongoDB常用命令1

    - `help`:显示MongoDB shell的基本命令。 - `db.help()`:显示当前数据库可用的操作命令。 - `db.yourColl.help()`:针对特定集合提供帮助,例如`yourColl`集合。 - `db.youColl.find().help()`:关于`find`...

    MongoDB数据库常用命令.docx

    1. Help 查看命令提示:`help`、`db.help()`、`db.yourColl.help()` 2. 切换/创建数据库:`use raykaeso`;当创建一个集合(table)的时候会自动创建当前数据库 3. 查询所有数据库:`show dbs` 4. 删除当前使用...

    MongoDB基本命令用[借鉴].pdf

    MongoDB 提供了`help`命令来获取基本操作的提示。例如,输入`db.help()`将显示当前数据库的操作命令,而`db.collectionName.help()`则会显示特定集合的操作命令,如`db.foo.help()`针对名为`foo`的集合。 **数据库...

    mongodb命令学习手册.pdf

    ### MongoDB命令学习手册知识点概述 #### 一、MongoDB简介与启动 - **MongoDB**是一种基于分布式文件存储的开源数据库系统,适用于处理大规模数据集的高性能应用。 - 成功启动MongoDB服务后,可以通过命令行工具`...

    mongodb说明介绍快速入门

    ### MongoDB 快速入门知识点详解 #### 一、MongoDB简介 MongoDB 是一款使用C++语言编写的开源文档型数据库...通过本文档的介绍,读者应该能够快速掌握MongoDB的基本概念和操作方法,为进一步深入学习打下坚实的基础。

    MongoDB常见操作命令大全

    本文旨在详细介绍MongoDB中的一些常见操作命令,包括数据库管理、集合操作、用户管理以及数据查询等方面。 #### 一、数据库管理 1. **帮助命令** - `help`: 显示所有可用的基本命令。 - `db.help()`: 显示针对...

    MongoDB安装过程

    下面将详细介绍 MongoDB 的安装过程。 一、下载安装程序 首先,需要从 MongoDB 官方网站下载安装程序。访问 http://www.mongodb.org/downloads,选择 Windows 32-bit 1.8.1 版本的安装程序。下载完成后,解压缩...

    MongoDB安装以及配置文件

    本教程将详细介绍MongoDB的安装过程以及配置文件的使用,帮助你顺利地在本地或服务器上搭建MongoDB环境。 **一、MongoDB安装** 1. **下载安装包**: 首先,你需要从MongoDB官方网站...

    记录MongoDB管理操作

    本文将详细介绍在过去一年多时间里,某房产系统在使用MongoDB过程中积累的一些基本管理经验,涉及安装启动、监控、备份与恢复、安全认证等方面。 #### 二、安装启动 MongoDB在Linux环境下安装非常简便。只需从官方...

    MongoDB_CLI:用于管理 MongoDB 本地服务器实例的简单 CLI。

    MongoDB 命令行界面 这是一个简单的 Bash CLI 脚本,用于管理本地mongod实例。 合理的 ... # Get MongoDB CLI help mongodb help # Start a mongod instance mongodb start # Stop a mongod instanc

    MongoDB 学习文档,内附Java代码

    - 输入`db.help()`可以获得关于当前数据库的所有可用命令的帮助信息。 ##### 2.2 写入数据 - **插入简单数据**: - 使用`db.collection_name.insert(document)`命令可以向集合中插入文档。 - 示例: ```...

    MongoDB常用数据库命令大全

    - **查看命令提示**:`help` 和 `db.help()` 可用于获取数据库层面的帮助信息,而`db.yourColl.help()` 会显示特定集合的操作帮助。 - **切换/创建数据库**:使用 `use &lt;database_name&gt;` 命令可以切换或创建数据库...

Global site tag (gtag.js) - Google Analytics