Home Database Mysql Tutorial MongoDB(四)管理架构

MongoDB(四)管理架构

Jun 07, 2016 pm 04:10 PM
mongodb Architecture manage

前边介绍了MongoDB的基础,这里推荐两个网站,大家可以查看一下,讲解的还是比较详细的:http://www.w3cschool.cc/mongodb/mongodb-tutorial.html,http://www.yiibai.com/mongodb/mongodb_create_backup.html#。好这篇文章来看一下MongoDB的数据管理,架构

前边介绍了MongoDB的基础,这里推荐两个网站,大家可以查看一下,讲解的还是比较详细的:http://www.w3cschool.cc/mongodb/mongodb-tutorial.html,http://www.yiibai.com/mongodb/mongodb_create_backup.html#。好这篇文章来看一下MongoDB的数据管理,架构搭建。好,先来看张图:

\

下边按照这张图进行一一介绍。

一,管理篇,当然主要是对数据库的管理,包括我们最关心的数据,和管理这些数据的用户。无论非关系型还是关系型数据库,这一点都是非常重要的。

1,数据的导入导出:对于MongoDB的数据导入导出,用到的还是bin下的命令mongoexport(导出),mongoimport(导入)。

mongoexport:默认导出的JSON格式的文件。进入dos命令窗口,在d:\mongodb\bin的路径下,利用mongoexport命令,可以通过mongoexport -help进行帮助查询。语法:mongoexport -d mydatabase -c mycollection --port 端口 --cvs -f 要导出的列 -0 指定导出的路径名+文件名

mongoimport:和上边的用法基本一样,可以导入JSON格式数据,也可以导出cvs数据格式。mongoimport -h:指明数据库宿主机的IP -u:指明数据库的用户名 -p:指明数据库的密码 -d:指明数据库的名字 -c:指明collection的名字 --type cvs --headerline(指名第一行是列名,无需要导入) --file要导入的文件

导入导出很简单的,熟练使用这两个命令即可。

2,数据的备份和恢复:数据无价,随着当今大数据时代的到来,数据的是越来越加重要,保存好数据,就相当于保存了价值,所以数据库的备份和恢复工作也是非常的重要,这里看一下Mongodb的备份和操作。

备份:也是bin下的命令mongodump,相对来说较简单:

参数说明:

-h:指明数据库宿主机的IP

-u:指明数据库的用户名

-p:指明数据库的密码

-d:指明数据库的名字

-c:指明collection的名字

-o:指明到要导出的文件名

-q:指明导出数据的过滤条件

恢复:bin下的命令mongorestore

参数说明:

-h:指明数据库宿主机的IP

-u:指明数据库的用户名

-p:指明数据库的密码

-d:指明数据库的名字

-c:指明collection的名字

-o:指明到要备份的文件名

-q:指明备份数据的过滤条件

3,用户管理,mongodb里边的用户管理,他有两类用户,一个是超级管理员,一个每个数据库的数据库管理员。默认情况下是没有权限认证的,只有启用了安全性认证后,数据库认证的用户才可以进行读写操作。启动时指定 --auth即添加了权限认证。

1.添加并验证用户,其中这是给本数据test添加用户,第三个参数为readOnly,true或false,表示是否为只读。

> use test

> db.addUser("zjx","tsjianxin")

> db.auth("zjx","tsjianxin")

2.查看已存在的用户

> db.system.users.find()

3.删除用户

> use dbname (admin or 51cv ,etc)

> db.system.users.remove({user:"haha"})

> db.system.users.find()

给admin添加的用户为超级管理员,可以管理其他数据库,但是每个数据库的登录验证必须从自己管理的数据库进行验证,超级管理必须通过admin进行管理,然后切换来管理其他数据库。

二,架构篇,这里简单看一下分布式数据库的搭建,分为主从复制和副本集两个情况,简单来看一下。

1,Master-Slave(主从)复制:MongoDB支持在多个机器中通过异步复制达到故障转移和实现冗余。多机器中同一时刻只有一台是用于写操作,也就是Master(主服务器),但是它可以把读操作分给其他的slave(从服务器)。这也就是主从,这种情况,当主服务器宕掉以后,需要我们手动将一台从服务器改为主服务器,这也是这种形式不好的地方。

首先,需要我们安装两台MongoDB服务器(当然也可以通过一台服务器,在不同的端口上)。然后主服务器启动的命令:mongod --master --dbpa "存放数据库的路径" --logpath "存放日志的路径" --port 端口号 这样我们的主服务器就算完成了。 从服务器启动命令: mongod --slave --source 主服务器的ip:主服务器的mongodb的端口号 --dbpa "存放数据库的路径" --logpath "存放日志的路径" --port 端口号 这样的我们主服务器的从服务器也就启动好了,当然我们可以创建多个从服务器。然后我们可以在主服务器进行增删改操作,看从服务器上的数据会随着主服务器的变化而变化,这样就达到了,mongodb的主从分布。

2,Replica Set(副本集)复制,这种分布集群,主要增加了出现故障自动切换和自动修复成员节点,各个DB之间的数据完全一样。和主从最为显著的区别在于其没有固定的节点,它是整个集群选举出的一个主节点,当其共工作不正常时,其它节点强烈推荐使用。

部署步骤:a,分别为每个mongoDB服务器创建data存储路径和log存储路径

b,分别创建主从key文件用于标识集群的私钥,里边存上相同的私钥,改为只读形式的。

c,每个服务器进行启动:mongod --replSet rs1(副本集名字,相同即可) --keyFile key的路径 --port 端口号 --dbpath 数据库存放路径 --logpath 日志路径

d,配置初始化Replica Sets,也就是将这个集合进行配置:登录任意一台:config_rs1={_id:"rs1",members:[{_id:0,host:"服务器1IP:端口",priority:1(优先级)},{id:1,host:"服务器2IP:端口",priority:2(优先级)}]}

然后初始化配置:rs.initiate(config_rs1); Ok即可

这样就弄好了,优先级数字越大,优先级越高,高的这一台将自动选为主服务器,可以进行增删改查,而其它的则是从服务器可以进行读,注意:rs.slaveOk();

好,最后举一个例子,来理解一下这两种架构。主从复制好比小学班级,副本集复制好比大学班级。每个班级都有一个班长,就是master服务器,其它学生是slave服务器。通过班长可以对班级事宜进行增删改查,而通过学生只能对班级事宜进行了解查询。小学的班长请假了,需要我们老师再来指定一个班长,学生没有意识去推荐,而大学班级,则会由学生自行推荐,无须老师的介入。

好,这篇就先到这,mongoDB的学习还有待大大的深入,通过使用不断理解深刻,不断熟悉,不断升华。

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Which version is generally used for mongodb? Which version is generally used for mongodb? Apr 07, 2024 pm 05:48 PM

It is recommended to use the latest version of MongoDB (currently 5.0) as it provides the latest features and improvements. When selecting a version, you need to consider functional requirements, compatibility, stability, and community support. For example, the latest version has features such as transactions and aggregation pipeline optimization. Make sure the version is compatible with the application. For production environments, choose the long-term support version. The latest version has more active community support.

The difference between nodejs and vuejs The difference between nodejs and vuejs Apr 21, 2024 am 04:17 AM

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

What is the architecture and working principle of Spring Data JPA? What is the architecture and working principle of Spring Data JPA? Apr 17, 2024 pm 02:48 PM

SpringDataJPA is based on the JPA architecture and interacts with the database through mapping, ORM and transaction management. Its repository provides CRUD operations, and derived queries simplify database access. Additionally, it uses lazy loading to only retrieve data when necessary, thus improving performance.

1.3ms takes 1.3ms! Tsinghua's latest open source mobile neural network architecture RepViT 1.3ms takes 1.3ms! Tsinghua's latest open source mobile neural network architecture RepViT Mar 11, 2024 pm 12:07 PM

Paper address: https://arxiv.org/abs/2307.09283 Code address: https://github.com/THU-MIG/RepViTRepViT performs well in the mobile ViT architecture and shows significant advantages. Next, we explore the contributions of this study. It is mentioned in the article that lightweight ViTs generally perform better than lightweight CNNs on visual tasks, mainly due to their multi-head self-attention module (MSHA) that allows the model to learn global representations. However, the architectural differences between lightweight ViTs and lightweight CNNs have not been fully studied. In this study, the authors integrated lightweight ViTs into the effective

Where is the database created by mongodb? Where is the database created by mongodb? Apr 07, 2024 pm 05:39 PM

The data of the MongoDB database is stored in the specified data directory, which can be located in the local file system, network file system or cloud storage. The specific location is as follows: Local file system: The default path is Linux/macOS:/data/db, Windows: C:\data\db. Network file system: The path depends on the file system. Cloud Storage: The path is determined by the cloud storage provider.

What are the advantages of mongodb database What are the advantages of mongodb database Apr 07, 2024 pm 05:21 PM

The MongoDB database is known for its flexibility, scalability, and high performance. Its advantages include: a document data model that allows data to be stored in a flexible and unstructured way. Horizontal scalability to multiple servers via sharding. Query flexibility, supporting complex queries and aggregation operations. Data replication and fault tolerance ensure data redundancy and high availability. JSON support for easy integration with front-end applications. High performance for fast response even when processing large amounts of data. Open source, customizable and free to use.

How steep is the learning curve of golang framework architecture? How steep is the learning curve of golang framework architecture? Jun 05, 2024 pm 06:59 PM

The learning curve of the Go framework architecture depends on familiarity with the Go language and back-end development and the complexity of the chosen framework: a good understanding of the basics of the Go language. It helps to have backend development experience. Frameworks that differ in complexity lead to differences in learning curves.

What does mongodb mean? What does mongodb mean? Apr 07, 2024 pm 05:57 PM

MongoDB is a document-oriented, distributed database system used to store and manage large amounts of structured and unstructured data. Its core concepts include document storage and distribution, and its main features include dynamic schema, indexing, aggregation, map-reduce and replication. It is widely used in content management systems, e-commerce platforms, social media websites, IoT applications, and mobile application development.

See all articles