cluster id(cluster id 的含义)
- 开发语言
- 2023-09-16
- 127
大家好,今天来为大家解答cluster id这个问题的一些问题点,包括cluster id 的含义也一样很多人还不知道,因此呢,今天就来为大家分析分析,现在让我们一起来...
大家好,今天来为大家解答cluster id这个问题的一些问题点,包括cluster id 的含义也一样很多人还不知道,因此呢,今天就来为大家分析分析,现在让我们一起来看看吧!如果解决了您的问题,还望您关注下本站哦,谢谢~
ccsd cisd区别
内容不同。ccsdcisd区别是内容不同,
1、CCS指的是志愿国际:CCS是志愿国际的简称,创建于1995年,是美国最具知名度的国际志愿者组织之一。
2、CCS指的是复合燃烧系统:CCS是指复合燃烧系统,是大众汽车开发中的系统。具有节油,环保等特点。
开关com是什么接口
COM接口是指clustercommunicationport接口,即串行通讯端口。现在的PC一般有两个串行口COM1和COM2。通常COM1使用的是9针D形连接器,也称之为RS-232接口
mgr是什么意思
MySQLGroupReplication(下简称MGR)准确来说是官方推出的高知可用解决方案,基于原生复制技术,并以插件的方式提供。
1、使用前,关掉防火墙,包括selinux,firewalld,或者MySQL企业版的firewall(如果用了企业版的话)2、两台机器:(4台MySQL实例)192.168.2.219centos-ytt57-13311/3312192.168.2.229centos-ytt57-23311/33123、安装MySQL(两台都装),MySQLShell(任意一台),mysqlrouter(任意一台,官方建议和应用程序装在一个服务器上)yuminstallmysql-community-servermysql-shellmysql-router-community
4、搭建InnoDB-Cluster(两台都装)
1.配置文件如下:shell>vi/etc/my.cnfmaster-info-repository=tablerelay-log-info-repository=tablegtid_mode=ONenforce_gtid_consistency=ONbinlog_checksum=NONElog_slave_updates=ONbinlog_format=ROWtransaction_write_set_extraction=XXHASH642.系统HOSTS配置(两台都配)
shell>vi/etc/hosts
127.0.0.1localhostlocalhost.localdomainlocalhost4localhost4.localdomain4
::1localhostlocalhost.localdomainlocalhost6localhost6.localdomain6
192.168.2.219centos-ytt57-2
192.168.2.229centos-ytt57-3
用MySQLcoalesce函数确认下report-host是否设置正确(root@localhost):[(none)]>SELECTcoalesce(@@report_host,@@hostname)asr;+----------------+|r|+----------------+|centos-ytt57-1|+----------------+1rowinset(0.00sec)
3.创建管理员用户搭建GROUPREPLICATION(四个节点都要)
createuserrootidentifiedby'Root@123';grantallon*.*torootwithgrantoption;flushprivileges;
4.MySQLsh连接其中一台节点:
[root@centos-ytt57-1mysql]#mysqlshroot@localhost:3321
5.检查配置正确性:(如果这里不显示OK,把对应的参数加到配置文件重启MySQL再次检查)dba.checkInstanceConfiguration("root@centos-ytt57-2:3311");dba.checkInstanceConfiguration("root@centos-ytt57-2:3312");dba.checkInstanceConfiguration("root@centos-ytt57-3:3311");dba.checkInstanceConfiguration("root@centos-ytt57-3:3312");mysqlsh执行检测
[root@centos-ytt57-1mysql]#mysqlsh--log-level=8root@localhost:3311
MySQLlocalhost:3311sslJS>dba.checkInstanceConfiguration("root@centos-ytt57-2:3311")
{
"status":"ok"
}
6.创建集群,节点1上创建。(结果显示Clustersuccessfullycreated表示成功)
MySQLlocalhost:3311sslJS>varcluster=dba.createCluster('ytt_mgr');
Clustersuccessfullycreated.UseCluster.addInstance()toaddMySQLinstances.
Atleast3instancesareneededfortheclustertobeabletowithstandupto
oneserverfailure.
7.添加节点2,3,4(全部显示OK,表示添加成功)MySQLlocalhost:3311sslJS>cluster.addInstance('root@centos-ytt57-2:3312');MySQLlocalhost:3311sslJS>cluster.addInstance('root@centos-ytt57-3:3311');MySQLlocalhost:3311sslJS>cluster.addInstance('root@centos-ytt57-3:3312');
8.查看拓扑图:(describe简单信息,status详细描述)
MySQLlocalhost:3311sslJS>cluster.describe()
{
"clusterName":"ytt_mgr",
"defaultReplicaSet":{
"name":"default",
"topology":[
{
"address":"centos-ytt57-2:3311",
"label":"centos-ytt57-2:3311",
"role":"HA",
"version":"8.0.17"
},
{
"address":"centos-ytt57-2:3312",
"label":"centos-ytt57-2:3312",
"role":"HA",
"version":"8.0.17"
},
{
"address":"centos-ytt57-3:3311",
"label":"centos-ytt57-3:3311",
"role":"HA",
"version":"8.0.17"
},
{
"address":"centos-ytt57-3:3312",
"label":"centos-ytt57-3:3312",
"role":"HA",
"version":"8.0.17"
}
],
"topologyMode":"Single-Primary"
}
}
MySQLlocalhost:3311sslJS>cluster.status()
"clusterName":"ytt_mgr",
"defaultReplicaSet":{
"name":"default",
"primary":"centos-ytt57-2:3311",
"ssl":"REQUIRED",
"status":"OK",
"statusText":"ClusterisONLINEandcantolerateuptoONEfailure.",
"topology":{
"centos-ytt57-2:3311":{
"address":"centos-ytt57-2:3311",
"mode":"R/W",
"readReplicas":{},
"role":"HA",
"status":"ONLINE",
"version":"8.0.17"
},
"centos-ytt57-2:3312":{
"address":"centos-ytt57-2:3312",
"mode":"R/O",
"readReplicas":{},
"role":"HA",
"status":"ONLINE",
"version":"8.0.17"
},
"centos-ytt57-3:3311":{
"address":"centos-ytt57-3:3311",
"mode":"R/O",
"readReplicas":{},
"role":"HA",
"status":"ONLINE",
"version":"8.0.17"
},
"centos-ytt57-3:3312":{
"address":"centos-ytt57-3:3312",
"mode":"R/O",
"readReplicas":{},
"role":"HA",
"status":"ONLINE",
"version":"8.0.17"
}
},
"topologyMode":"Single-Primary"
},
"groupInformationSourceMember":"centos-ytt57-2:3311"
9.简单测试下数据是否同步
(root@localhost):[(none)]>createdatabaseytt;
QueryOK,1rowaffected(0.03sec)
(root@localhost):[(none)]>useytt;
Databasechanged
(root@localhost):[ytt]>createtablep1(idintprimarykey,log_timedatetime);
QueryOK,0rowsaffected(0.08sec)
(root@localhost):[ytt]>insertintop1values(1,now());
QueryOK,1rowaffected(0.04sec)
(root@localhost):[ytt]>showmasterstatus;
+---------------+----------+--------------+------------------+-------------------------------------------+
|File|Position|Binlog_Do_DB|Binlog_Ignore_DB|Executed_Gtid_Set|
+---------------+----------+--------------+------------------+-------------------------------------------+
|mysql0.000001|25496|||6c7bb9db-b759-11e9-a9c0-0800276cf0fc:1-41|
+---------------+----------+--------------+------------------+-------------------------------------------+
1rowinset(0.00sec)
查看其他三个节点
(root@localhost):[ytt]>showtables;
+---------------+
|Tables_in_ytt|
+---------------+
|p1|
+---------------+
1rowinset(0.00sec)
(root@localhost):[ytt]>select*fromp1;
+----+---------------------+
|id|log_time|
+----+---------------------+
|1|2019-08-0516:44:20|
+----+---------------------+
1rowinset(0.00sec)
停掉主节点:[root@centos-ytt57-2mysql0]#systemctlstopmysqld@0
现在查看,主节点已经变为本机3312节点"centos-ytt57-2:3312":{"address":"centos-ytt57-2:3312","mode":"R/W","readReplicas":{},"role":"HA","status":"ONLINE"}
10.报错处理
错误日志里显示2019-08-05T09:01:35.125591Z0[ERROR]Plugingroup_replicationreported:'Thegroupnameoptionismandatory'2019-08-05T09:01:35.125622Z0[ERROR]Plugingroup_replicationreported:'UnabletostartGroupReplicationonboot'
同时用cluster.rescan()扫描,发现Theinstance'centos-ytt57-2:3311'isnolongerpartoftheReplicaSet.
重新加入此节点到集群:cluster.rejoinInstance('centos-ytt57-2:3311')
再次执行cluster.status()查看集群状态:"status":"OK",11.移除和加入cluster.removeInstance("centos-ytt57-3:3312");Theinstance'centos-ytt57-3:3312'wassuccessfullyremovedfromthecluster.cluster.addInstance("centos-ytt57-3:3312");Theinstance'centos-ytt57-3:3312'wassuccessfullyaddedtothecluster.
12.用mysqlrouter生成连接MGR相关信息。涉及到两个用户:--user=mysqlrouter是使用mysqlrouter的系统用户自动创建的MySQL用户是用来与MGR通信的用户。如果想查看这个用户的用户名以及密码,就加上--force-password-validation,不过一般也没有必要查看。
Dell服务器raid阵列怎么配置
使用阵列卡本身的配置工具,即阵列卡的BIOS。(一般用于重装系统或没有安装操作系统的情况下去创建容器(Adaptec阵列卡)/逻辑驱动器(AMI/LSI阵列卡)。使用第三方提供的配置工具软件去实现对阵列卡的管理。如DellArrayManager。(这些软件用于服务器上已经安装有操作系统)正确识别您的阵列卡的型号识别您的磁盘阵列控制器(磁盘阵列控制器为可选项,如果没有购买磁盘阵列控制器的话以该步骤可以省去)如果您有一块AMI/LSI磁盘阵列控制器(PERC2/SC,PERC2/DC,PERC3/SC,PERC3/DC,PERC4/DI,PERC4/DC),在系统开机自检的时候您将看到以下信息:DellPowerEdgeExpandableRAIDControllerBIOSX.XXJun26.2001Copyright(C)AMERICANMEGATRENDSINC.PressCTRL+MtoRunConfigurationUtilityorPressCTRL+HforWebBios或者PowerEdgeExpandableRAIDControllerBIOSX.XXFeb03,2003Copyright(C)LSILogicCorp.PressCTRL+MtoRunConfigurationUtilityorPressCTRL+HforWebBios此款阵列卡的配置方法请参考如下:在AIM/LSI磁盘阵列控制器上创建LogicalDrive(逻辑磁盘)---PERC2/SC,PERC2/DC,PERC3/SC,PERC3/DC,PERC3/DCL---PERC4DI/DC(略有不同,请仔细阅读下列文档)*注意:请预先备份您服务器上的数据,配置磁盘阵列的过程将会删除您的硬盘上的所有数据!1)在自检过程中,当提示按<Control><M>键,按下并进入RAID的配置界面。2)如果服务器在Cluster模式下,下列信息将会显示"按任意键继续"。3)选中Configure,并按回车。4)如果需要重新配置一个RAID,请选中NewConfiguration,并按回车。如果已经存在一个可以使用的逻辑磁盘,请选中View/AddConfiguration,并按回车。本文,我们将会选择"NewConfiguration"为例(注意:选择NewConfiguration将删去原有磁盘阵列上的配置信息)5)选中YES,并按回车。6)按空格键选中准备要创建逻辑磁盘的硬盘,当该逻辑磁盘里最后的一个硬盘被选中后,按回车键。7)如果只创建一个逻辑磁盘,则进入步骤8;7-1)按空格键选中第二个逻辑磁盘里的硬盘。7-2)当该逻辑磁盘里最后一个硬盘被选中后,按回车键。7-3)当需要配置更多的逻辑磁盘,重复7.1和7.2步骤直到所有逻辑磁盘被创建。8)按F10进行逻辑磁盘的配置。当您的阵列卡的类型是PERC4DI/DC,将显示下列信息,否则请直接到步骤11。9)按空格键选择阵列。跨接信息,例如Span-1(跨接-1),出现在阵列框内。可以创建多个阵列,然后选择将其跨接。10)按F10配置逻辑磁盘。11)选择合适的RAID类型,其余接受默认值。注:Dell推荐把所有的阵列空间分配给一个逻辑盘。12)选中Accept,并按回车。13)按ESC键退回,选中YES,并按回车。14)按任意键继续。15)初始化逻辑磁盘(Logicaldriver)(刚创建的逻辑磁盘需要经过初始化,才能使用)按ESC键退回主菜单,选中Initialize,并按回车。16)选中需要初始化的逻辑磁盘,并按空格键接受。17)选中YES,并按回车。18)按任意键继续,并重启系统,RAID配置完成。
关于cluster id,cluster id 的含义的介绍到此结束,希望对大家有所帮助。
本文链接:http://xinin56.com/kaifa/24966.html