search
HomeDatabaseMysql TutorialMMS 硬件和软件要求(4)

MMS 硬件和软件要求(4)

Jun 07, 2016 pm 04:38 PM
mmsoneInstallhardwareRequiresoftwareneed

硬件要求 要安装MMS,需要一台MMS应用程序的服务器,包含监控和mongodb复制集(mongod单独实例也行,不过建议用复制集),备份组件是可选的。如果你想支持备份,需要额外的一台服务器来运行备份守护程序和blockstore 存储。 MMS应用服务器 所需的服务器硬件

硬件要求

要安装MMS,需要一台MMS应用程序的服务器,包含监控和mongodb复制集(mongod单独实例也行,不过建议用复制集),备份组件是可选的。如果你想支持备份,需要额外的一台服务器来运行备份守护程序和blockstore 存储。

MMS应用服务器

所需的服务器硬件要求依赖于监控的节点数量。
被监控的主机数量 CPU核数 RAM
高到400 4+ 15 GB
高到2000 8+ 15 GB
2000+ 联系厂家 联系厂家
这些要求仅支持MMS应用程序包的软件组件。如果你想在同一台物理服务器上安装MMS应用程序数据库,将额外需要满足MMS应用程序数据库的存储需求。

MMS应用数据库

参见下节内容。

可选:MMS备份守护

只有安装和运行MMS备份才需要该服务。
主机数目 CPU核数 RAM 存储容量 存储 IOPS/s
多达200台主机 4+ 2Ghz+ 15 GB 联系厂家 联系厂家
运行备份守护包的服务器将充当一个隐藏的secondary,每个复制集分配给它的。因此本系统必须具备的大磁盘空间和写的能力来保持所有复制集数据。?支持时间点恢复磁盘必须有额外的空间来存储拷贝的数据。典型的守护程序必须能够储存2到2.5倍的数据大小。

可选:MMS备份Blockstore数据库服务器

Blockstore服务器存储mongodb实例的快照。如果要部署MMS备份需提供Blockstore 服务器。 Blockstores必须具有存储2至3倍的总备份数据大小的容量。 中档的HDD硬盘将有足够的I / O吞吐量来处理Blockstore的负荷。每个复制集成员都应该有4x2GHz的CPU内核。?建议8GB的内存和1TB容量的硬盘为Blockstore提供良好的快照和恢复速度。

软件要求

操作系统

MMS支持以下64位Linux发行版本
  • CentOS 5 or later,
  • Red Hat Enterprise Linux 5, or later,
  • SUSE 11 or Later,
  • Amazon Linux AMI (latest version only,)
  • Ubuntu 12.04 or later.

Ulimits

MMS包自动提高打开文件数,最大用户进程,内存和虚拟内存。在Red Hat系统下,一定要检查,可能限制最大用户进进程数/etc/security/limits.d/90-nproc.conf文件。如果/etc/security/limits.d/90-nproc.conf文件存在,将其删除。

MongoDB

后端mongodb数据库是单独的:MongoDB2.4.9或更高版本 后端mongodb数据库是复制集和分片集群必须运行MongoDB2.4.3或更高版本

浏览器

  • Chrome 8 and greater.
  • Firefox 12 and greater.
  • IE 9 and greater.
  • Safari 6 and greater.

SMTP

MMS需要对邮件服务器的基本功能,如密码重置和警报。

SNMP

如果你的环境包括SNMP,可以配置SMNP trap定期接收心跳监来监视MMS内部状态。
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
MySQL String Types: Storage, Performance, and Best PracticesMySQL String Types: Storage, Performance, and Best PracticesMay 10, 2025 am 12:02 AM

MySQLstringtypesimpactstorageandperformanceasfollows:1)CHARisfixed-length,alwaysusingthesamestoragespace,whichcanbefasterbutlessspace-efficient.2)VARCHARisvariable-length,morespace-efficientbutpotentiallyslower.3)TEXTisforlargetext,storedoutsiderows,

Understanding MySQL String Types: VARCHAR, TEXT, CHAR, and MoreUnderstanding MySQL String Types: VARCHAR, TEXT, CHAR, and MoreMay 10, 2025 am 12:02 AM

MySQLstringtypesincludeVARCHAR,TEXT,CHAR,ENUM,andSET.1)VARCHARisversatileforvariable-lengthstringsuptoaspecifiedlimit.2)TEXTisidealforlargetextstoragewithoutadefinedlength.3)CHARisfixed-length,suitableforconsistentdatalikecodes.4)ENUMenforcesdatainte

What are the String Data Types in MySQL?What are the String Data Types in MySQL?May 10, 2025 am 12:01 AM

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,2)VARCHARforvariable-lengthtext,3)BINARYandVARBINARYforbinarydata,4)BLOBandTEXTforlargedata,and5)ENUMandSETforcontrolledinput.Eachtypehasspecificusesandperformancecharacteristics,sochoose

How to Grant Permissions to New MySQL UsersHow to Grant Permissions to New MySQL UsersMay 09, 2025 am 12:16 AM

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

How to Add Users in MySQL: A Step-by-Step GuideHow to Add Users in MySQL: A Step-by-Step GuideMay 09, 2025 am 12:14 AM

ToaddusersinMySQLeffectivelyandsecurely,followthesesteps:1)UsetheCREATEUSERstatementtoaddanewuser,specifyingthehostandastrongpassword.2)GrantnecessaryprivilegesusingtheGRANTstatement,adheringtotheprincipleofleastprivilege.3)Implementsecuritymeasuresl

MySQL: Adding a new user with complex permissionsMySQL: Adding a new user with complex permissionsMay 09, 2025 am 12:09 AM

ToaddanewuserwithcomplexpermissionsinMySQL,followthesesteps:1)CreatetheuserwithCREATEUSER'newuser'@'localhost'IDENTIFIEDBY'password';.2)Grantreadaccesstoalltablesin'mydatabase'withGRANTSELECTONmydatabase.TO'newuser'@'localhost';.3)Grantwriteaccessto'

MySQL: String Data Types and CollationsMySQL: String Data Types and CollationsMay 09, 2025 am 12:08 AM

The string data types in MySQL include CHAR, VARCHAR, BINARY, VARBINARY, BLOB, and TEXT. The collations determine the comparison and sorting of strings. 1.CHAR is suitable for fixed-length strings, VARCHAR is suitable for variable-length strings. 2.BINARY and VARBINARY are used for binary data, and BLOB and TEXT are used for large object data. 3. Sorting rules such as utf8mb4_unicode_ci ignores upper and lower case and is suitable for user names; utf8mb4_bin is case sensitive and is suitable for fields that require precise comparison.

MySQL: What length should I use for VARCHARs?MySQL: What length should I use for VARCHARs?May 09, 2025 am 12:06 AM

The best MySQLVARCHAR column length selection should be based on data analysis, consider future growth, evaluate performance impacts, and character set requirements. 1) Analyze the data to determine typical lengths; 2) Reserve future expansion space; 3) Pay attention to the impact of large lengths on performance; 4) Consider the impact of character sets on storage. Through these steps, the efficiency and scalability of the database can be optimized.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor