Home >Database >Mysql Tutorial >简单的 6 步配置 MongoDB 复制集

简单的 6 步配置 MongoDB 复制集

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:48:391108browse

在本次教程中,我们将创建含有三个节点的MongoDB群集。第一个节点是主节点,第二个节点是Failover节点,第三个节点是仲裁节点。

在本次教程中,我们将创建含有三个节点的MongoDB群集。第一个节点是主节点,,第二个节点是Failover节点,第三个节点是仲裁节点。

1. 安装Mongo并设置配置文件

安装3台服务器并调整配置文件/etc/mongod.conf:

#Select your replication set name
replSet=[replication_set_name]
#Select the replication log size
oplogSize=1024
Disable the bind_ip parameter to avoid binding to only 127.0.0.1 interface
#bind_ip

2. 重启三台mongod守护进程

 > sudo service mongod restart

3. 在主节点上创建初始化配置

登录到主节点并创建一个初始化的配置。请注意使用私有IP不要使用回送地址(127.0.0.1):

> mongo
Primary> cfg = {"_id" : "[replication_set_name]", "members" : [{"_id" : 0,"host" : "[Primary_Host_IP]:27017"}]}
Primary> rs.initiate(cfg);

4. 在复制集中添加Failover实例

Primary> rs.add("[Failover_Host_IP]:27017")

5.  在复制集中添加仲裁实例

Primary>rs.addArb(":27017")

6. 确认复制集的状态

Primary>rs.status()

底线

我希望每个数据群集的安装都是容易的就像MongoDB复制集的安装一样。

Linux下设置MongoDB开机自启动

CentOS编译安装MongoDB

CentOS 编译安装 MongoDB与mongoDB的php扩展

CentOS 6 使用 yum 安装MongoDB及服务器端配置

Ubuntu 13.04下安装MongoDB2.4.3

MongoDB入门必读(概念与实战并重)

《MongoDB 权威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

MongoDB 的详细介绍:请点这里
MongoDB 的下载地址:请点这里

本文永久更新链接地址:

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn