您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“如何安裝orchestrator元數據庫MySQL”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何安裝orchestrator元數據庫MySQL”這篇文章吧。
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。
密碼按需修改。
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
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后端元數據庫信息 ... "MySQLOrchestratorHost": "127.0.0.1", "MySQLOrchestratorPort": 3306, "MySQLOrchestratorDatabase": "orchestrator", "MySQLOrchestratorUser": "orchestrator", "MySQLOrchestratorPassword": "orchestrator", ... /// 配置orchestrator監控的目標數據庫信息 "MySQLTopologyUser": "orchestrator", "MySQLTopologyPassword": "orchestrator",
cd /usr/local/orchestrator && ./orchestrator --config=/etc/orchestrator.conf.json http &
web端訪問地址10.10.30.146:3000。頁面效果如下:
以上是“如何安裝orchestrator元數據庫MySQL”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。