MySQL高可用工具Orchestrator系列一:單節點模式安裝

沃趣科技發表於2019-10-30

      背  景

MySQL高可用方案有很多 種,常見的有:keepalived、MHA、Galera、MGR、Orchestrator、replication-manager等。本系列將介紹在GitHub被使用的Orchestrator方案。本篇文章先介紹最基礎的單節點模式的安裝。

      環  境

orchestrator機器:10.10.30.146

orchestrator後端後設資料庫MySQL:10.10.30.146

目標監控資料庫:10.10.30.129:3306

       安裝orchestrator後設資料庫MySQL

安裝MySQL的步驟省略,和常規安裝MySQL一樣。

安裝完成後建立orchestrator需要用到的庫和使用者。

CREATE DATABASE IF NOT EXISTS orchestrator;
CREATE USER 'orchestrator'@'127.0.0.1' IDENTIFIED BY 'orchestrator';
GRANT ALL PRIVILEGES ON `orchestrator`.* TO 'orchestrator'@'127.0.0.1';

這裡後設資料庫MySQL和orchestrator在同一臺機器上,所以建立賬號的時候用的'127.0.0.1',如果不在同一臺機器上,將IP換成orchestrator所在機器ip。
 密碼按需修改。

       安裝orchestrator

下載orchestrator安裝包,這裡用的是orchestrator-3.1.0-linux-amd64.tar.gz。

https://github.com/github/orchestrator/releases解壓orchestrator安裝包。

tar -xvzf orchestrator-3.1.0-linux-amd64.tar.gz -C /

將/usr/local/orchestrator/orchestrator-sample.conf.json移動到/etc下,並命名為orchestrator.conf.json。

[root@10-10-30-146 orchestrator]# ls
orchestrator orchestrator-sample-sqlite.conf.json orchestrator-sample.conf.json resources
[root@10-10-30-146 orchestrator]# cp orchestrator-sample.conf.json /etc/orchestrator.conf.json

      目標監控資料庫授權

在需要監控的目標資料庫上進行授權。這裡目標資料庫是:10.10.30.129:3306

CREATE USER 'orchestrator'@'orch_host' IDENTIFIED BY 'orch_topology_password';
GRANT SUPER, PROCESS, REPLICATION SLAVE, RELOAD ON *.* TO 'orchestrator'@'orch_host';
GRANT SELECT ON mysql.slave_master_info TO 'orchestrator'@'orch_host';
GRANT SELECT ON ndbinfo.processes TO 'orchestrator'@'orch_host'; -- Only for NDB Cluster

其中,將'orch_host' 改成對應orch所在伺服器的ip,'orch_topology_password'改成合適的密碼。這裡orch_host是10.10.30.146,將密碼改為orchestrator。

      修改orchestrator配置檔案

修改/etc/orchestrator.conf.json如下:

/// 配置orchestrator後端後設資料庫資訊
...
"MySQLOrchestratorHost": "127.0.0.1",
"MySQLOrchestratorPort": 3306,
"MySQLOrchestratorDatabase": "orchestrator",
"MySQLOrchestratorUser": "orchestrator",
"MySQLOrchestratorPassword": "orchestrator",
...
/// 配置orchestrator監控的目標資料庫資訊
"MySQLTopologyUser": "orchestrator",
"MySQLTopologyPassword": "orchestrator",

      啟動orchestrator 

cd /usr/local/orchestrator && ./orchestrator --config=/etc/orchestrator.conf.json http &

web端訪問地址10.10.30.146:3000。頁面效果如下:


|  作者簡介

韓傑  沃趣科技高階資料庫工程師

專注MySQL資料庫三年,精通MySQL體系結構,資料庫優化,trouble shooting。服務過多家銀行客戶,熟悉銀行業務及系統下資料庫不同架構使用場景。熟悉MySQL主從複製原理,及應用的各種高可用場景。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28218939/viewspace-2661897/,如需轉載,請註明出處,否則將追究法律責任。

相關文章