mongod启动脚本/etc/init.d/mongod 1 #!/bin/bash 2 3 # mongod - Startup script for mongod 4 5 # chkconfig: 35 85 15 6 # description: Mongo is a scalable, .....
分类:
数据库 时间:
2014-10-30 16:56:31
阅读次数:
397
1. replica set
每个副本集需要设置副本集名称。
在启动mongod时指定。
2. 搭建步骤
2.1 启动
首先启动mongod
启动时设置为副本集模式,并设置名称。
两种方式,通过配置文件,或命令行模式。
配置文件:...
分类:
数据库 时间:
2014-08-23 16:55:21
阅读次数:
196
MongoDB常用命令1.启动命令 mongod 启动数据库进程 --dbpath 制定数据库的目录
--port 制定数据库的端口,默认是27017 --bind_ip 绑定IP --directoryperdb 为每个db创建一个独立子目录
--logpath 制定日志存放目录 -...
分类:
数据库 时间:
2014-05-01 21:09:19
阅读次数:
451