- 浏览: 4259463 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
masuweng:
...
kaptcha验证码组件使用简介 -
caobingyi:
你好,问下html是怎么调用loginCheck方法的?
kaptcha验证码组件使用简介 -
hayoouch:
XieFuQ 写道既然都考虑到乐观锁了,是否可以直接换表存储引 ...
mysql乐观锁总结和实践 -
murdonson:
辛苦了
mysql悲观锁总结和实践 -
iamnotstar:
写得不错,感谢分享
memcached-session-manager配置
首先切换到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
发表评论
-
Mysql错误:Every derived table must have its own alias
2014-04-07 09:27 17086mysql执行多表查询时报错: [SQL] SELECT ... -
mysql procedure error:[Err] 1338 - Cursor declaration after handler declaration
2013-09-10 14:16 9950今天编写了一个mysql存储过程定义语句,在执行的时候报错: ... -
mysql乐观锁总结和实践
2013-05-08 12:13 121876上一篇文章《MySQL悲观锁总结和实践》谈到了MySQL悲观 ... -
mysql悲观锁总结和实践
2013-05-07 12:20 82079最近学习了一下数据库的悲观锁和乐观锁,根据自己的理解和网上 ... -
Mongodb Sharding Cluster搭建
2012-08-23 01:46 0Sharding架构介绍 Sharding是一种将海量数据 ... -
Mongodb性能监控
2012-08-22 00:42 118871.mongosniff工具 首先了解一下sniffer的 ... -
Mongodb高级管理命令
2012-08-21 01:24 38421.克隆collection 命令格式: >d ... -
Mongodb数据导出工具mongoexport和导入工具mongoimport介绍
2012-08-21 00:35 186959一、导出工具mongoexport Mongodb中的mon ... -
Mongodb MapReduce编程模型
2012-08-20 00:55 10939Mongodb官网对MapReduce介绍: Map/red ... -
Mongodb数据更新命令、操作符
2012-08-19 23:05 95887一、Mongodb数据更新命令 Mongodb更新有两个命令 ... -
Mongodb存储过程
2012-08-19 20:36 19469Mongodb支持存储过程的使用,存储过程可以接收和输出参数, ... -
Mongodb联合查询
2012-08-19 19:33 112619在关系型数据库中,通过连接运算符可以实现多个表联合查询。而非关 ... -
Mongodb后台daemon方式启动
2012-08-17 01:03 41610Mongodb可以通过命令行方式和配置文件的方式来启动,具体命 ... -
Mongodb主从复制
2012-08-15 01:04 3234主从复制是Mongodb最常用的复制方式。这种方式非常灵活,可 ... -
通过mongodump和mongorestore实现Mongodb备份和恢复
2012-08-14 01:19 83573Mongodb自带了mongodump和mongorestor ... -
Mongodb常用命令介绍
2012-08-13 01:09 25661查看命令的方式: 1.在shell中运行db.listCom ... -
REST is not enabled. use --rest to turn on.
2012-08-13 00:00 5359使用浏览器访问mongodb管理员接口:http://ipad ... -
Mongodb MapReduce Error:'out' has to be a string or an object
2012-08-12 19:32 4205最近在学习Mongodb,作为入门,选择了《Mongodb权威 ... -
MyBatis批量插入数据
2012-07-10 08:50 433953在程序中封装了一个List集合对象,然后需要把该集合中的实体插 ... -
MySQL报错: java.sql.SQLException: Column count doesn't match value count at row 1
2012-07-09 16:24 28552项目使用了Spring和MyBatis,在往mysql数据库里 ...
相关推荐
### MongoDB常用命令详解 #### 一、数据库管理 在MongoDB中,数据库是存储文档的容器,通过一系列的命令可以方便地对数据库进行管理和操作。 ##### 1. 帮助命令 (Help) - **命令格式**: `help`, `db.help()`, `db...
5. **MongoDB命令帮助**:如果你想知道MongoDB支持哪些命令,可以使用`help`。它会显示一系列基本的数据库和集合操作命令。更具体的,你可以输入`db.help()`来查看当前数据库支持的方法,或者`db.<collection>.help...
1. `help`:显示MongoDB的帮助信息,提供关于不同类别命令的概述。 2. `db.help()`:提供当前数据库级别的帮助,包括对数据库对象的操作。 3. `show dbs`:列出所有已创建的数据库。 4. `use <db_name>`:切换到指定...
mongodb php distinct command --- mongoDb 常用命令
本文将深入探讨 MongoDB 的 `help` 命令以及如何在 Shell 中执行 JavaScript (JS) 脚本。 1. **MongoDB 的 `help` 命令** `help` 命令是 MongoDB 提供的一个内置工具,用于获取有关数据库操作的帮助信息。它的...
### MongoDB数据库简单介绍 #### MongoDB概述 MongoDB是一款开源、基于分布式文件存储的NoSQL数据库系统,它使用C++语言编写。与传统的关系型数据库不同,MongoDB采用文档数据模型来存储数据,这种数据模型非常灵活...
MongoDB 安装和实用命令 MongoDB 是一个基于分布式文件存储的开源数据库系统。它的主要特点是高性能、易扩展、灵活的数据模型等。下面是 MongoDB 的安装和实用命令。 安装 MongoDB 1. 下载 MongoDB 的安装包,...
- `help`:显示MongoDB shell的基本命令。 - `db.help()`:显示当前数据库可用的操作命令。 - `db.yourColl.help()`:针对特定集合提供帮助,例如`yourColl`集合。 - `db.youColl.find().help()`:关于`find`...
1. Help 查看命令提示:`help`、`db.help()`、`db.yourColl.help()` 2. 切换/创建数据库:`use raykaeso`;当创建一个集合(table)的时候会自动创建当前数据库 3. 查询所有数据库:`show dbs` 4. 删除当前使用...
MongoDB 提供了`help`命令来获取基本操作的提示。例如,输入`db.help()`将显示当前数据库的操作命令,而`db.collectionName.help()`则会显示特定集合的操作命令,如`db.foo.help()`针对名为`foo`的集合。 **数据库...
### MongoDB命令学习手册知识点概述 #### 一、MongoDB简介与启动 - **MongoDB**是一种基于分布式文件存储的开源数据库系统,适用于处理大规模数据集的高性能应用。 - 成功启动MongoDB服务后,可以通过命令行工具`...
### MongoDB 快速入门知识点详解 #### 一、MongoDB简介 MongoDB 是一款使用C++语言编写的开源文档型数据库...通过本文档的介绍,读者应该能够快速掌握MongoDB的基本概念和操作方法,为进一步深入学习打下坚实的基础。
本文旨在详细介绍MongoDB中的一些常见操作命令,包括数据库管理、集合操作、用户管理以及数据查询等方面。 #### 一、数据库管理 1. **帮助命令** - `help`: 显示所有可用的基本命令。 - `db.help()`: 显示针对...
下面将详细介绍 MongoDB 的安装过程。 一、下载安装程序 首先,需要从 MongoDB 官方网站下载安装程序。访问 http://www.mongodb.org/downloads,选择 Windows 32-bit 1.8.1 版本的安装程序。下载完成后,解压缩...
本教程将详细介绍MongoDB的安装过程以及配置文件的使用,帮助你顺利地在本地或服务器上搭建MongoDB环境。 **一、MongoDB安装** 1. **下载安装包**: 首先,你需要从MongoDB官方网站...
本文将详细介绍在过去一年多时间里,某房产系统在使用MongoDB过程中积累的一些基本管理经验,涉及安装启动、监控、备份与恢复、安全认证等方面。 #### 二、安装启动 MongoDB在Linux环境下安装非常简便。只需从官方...
MongoDB 命令行界面 这是一个简单的 Bash CLI 脚本,用于管理本地mongod实例。 合理的 ... # Get MongoDB CLI help mongodb help # Start a mongod instance mongodb start # Stop a mongod instanc
- 输入`db.help()`可以获得关于当前数据库的所有可用命令的帮助信息。 ##### 2.2 写入数据 - **插入简单数据**: - 使用`db.collection_name.insert(document)`命令可以向集合中插入文档。 - 示例: ```...
- **查看命令提示**:`help` 和 `db.help()` 可用于获取数据库层面的帮助信息,而`db.yourColl.help()` 会显示特定集合的操作帮助。 - **切换/创建数据库**:使用 `use <database_name>` 命令可以切换或创建数据库...