MySQL高可用工具Orchestrator怎么进行raft多节点模式安装
这篇文章将为大家详细讲解有关MySQL高可用工具Orchestrator怎么进行raft多节点模式安装,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
环 境
orchestrator机器:10.10.30.150、10.10.30.128、10.10.30.145orchestrator后端元数据库MySQL:10.10.30.150、10.10.30.128、10.10.30.145目标监控数据库:10.10.30.130:3306 安装orchestrator元数据库MySQL在每一台orchestrator机器上安装MySQL,安装的步骤省略,和常规安装MySQL一样。安装完成后创建orchestrator需要用到的库和用户。CREATEUSER'orchestrator'@'127.0.0.1'IDENTIFIEDBY'orchestrator';GRANTALLPRIVILEGESON`orchestrator`.*TO'orchestrator'@'127.0.0.1';
安装orchestrator下载orchestrator安装包,这里用的是orchestrator-3.1.2-linux-amd64.tar.gzhttps://github.com/github/orchestrator/releases在每一台orchestrator机器上,解压orchestrator安装包。这里元数据库MySQL和orchestrator在同一台机器上,所以创建账号的时候用的'127.0.0.1',如果不在同一台机器上,将IP换成orchestrator所在机器ip。
密码按需修改
tar-xvzforchestrator-3.1.2-linux-amd64.tar.gz-C/将/usr/local/orchestrator/orchestrator-sample.conf.json移动到/etc下,并命名为orchestrator.conf.json
[root@10-10-30-150orchestrator]#lsorchestratororchestrator-sample-sqlite.conf.jsonorchestrator-sample.conf.jsonresources[root@10-10-30-150orchestrator]#cporchestrator-sample.conf.json/etc/orchestrator.conf.json 目标监控数据库授权在需要监控的目标数据库上进行授权。这里目标数据库是:10.10.30.130:3306
CREATEUSER'orchestrator'@'orch_host'IDENTIFIEDBY'orch_topology_password';
GRANTSUPER,PROCESS,REPLICATIONSLAVE,RELOADON*.*TO'orchestrator'@'orch_host';
GRANTSELECTONmysql.slave_master_infoTO'orchestrator'@'orch_host';
GRANTSELECTONndbinfo.processesTO'orchestrator'@'orch_host';--OnlyforNDBCluster
修改orchestrator配置文件修改/etc/orchestrator.conf.json如下:其中,将'orch_host' 改成对应orch所在服务器的ip,'orch_topology_password'改成合适的密码。这里orch_host是10.10.30.%,将密码改为orchestrator。
///配置orchestrator后端元数据库信息..."MySQLOrchestratorHost":"127.0.0.1","MySQLOrchestratorPort":3306,"MySQLOrchestratorDatabase":"orchestrator","MySQLOrchestratorUser":"orchestrator","MySQLOrchestratorPassword":"orchestrator",...///配置orchestrator监控的目标数据库信息"MySQLTopologyUser":"orchestrator","MySQLTopologyPassword":"orchestrator",...///配置raft的相关参数"RaftEnabled":true,"RaftDataDir":"/var/lib/orchestrator","RaftBind":"10.10.30.150",#本机ip或者hostname"DefaultRaftPort":10008,#raft端口"RaftNodes":["10.10.30.150","10.10.30.128","10.10.30.145"]启动orchestrator在每台orchestrator机器上启动orchestrator服务。
cd/usr/local/orchestrator&&./orchestrator--config=/etc/orchestrator.conf.jsonhttp>/usr/local/orchestrator/orchestrator.log2>&1&web端访问地址10.10.30.150:3000。页面效果如下:
问 题这里假定环境:
10.10.30.170是从库
10.10.30.130是主库
如上图所示
3.1.2版本的orchestrator在通过从库10.10.30.170发现主库的时候,通过show slave status得到的master_host虽然是10.10.30.130,但是页面上显示的却是10.10.30.130这个ip对应的hostname:10-10-30-130,如下图所示:
因此,orchestrator会报10-10-30-130找不到:
2019-11-2713:48:29ERRORdialtcp:lookup10-10-30-130on223.5.5.5:53:nosuchhost 如何解决将orchestrator版本换成3.1.0在orchestrator机器上的/etc/hosts下配置域名解析信息,添加如下:
10.10.30.13010-10-30-13010.10.30.18310-10-30-18310.10.30.17010-10-30-170
关于MySQL高可用工具Orchestrator怎么进行raft多节点模式安装就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。