diff --git a/HowtoMySQL/Orchestrator.md b/HowtoMySQL/Orchestrator.md index f627c71b..763d38c1 100644 --- a/HowtoMySQL/Orchestrator.md +++ b/HowtoMySQL/Orchestrator.md @@ -76,4 +76,17 @@ GRANT SELECT ON mysql.slave_master_info TO 'orchestrator_client'@'orchestrator_h GRANT SELECT ON ndbinfo.processes TO 'orchestrator_client'@'orchestrator_host'; -- seulement pour un cluster NDB ~~~ +> `REPLICATION SLAVE` est requis pour `SHOW SLAVE HOSTS`, and pour scanner les binlogs si on utilise les `Pseudo GTID`. `RELOAD` est requis pour pourvoir faire un `RESET SLAVE`. `PROCESS` est requis pour surveiller les process des réplicas avec `SHOW PROCESSLIST`. +On configure le fichier `/etc/orchestrator.conf.json` avec les variables suivantes pour indiquer l'utilisateur `orchestrator_client` : + +~~~ +"MySQLTopologyUser": "orchestrator_client", +"MySQLTopologyPassword": "password", +~~~ + +Ensuite on peux démarrer Orchestrator comme ceci : + +~~~ +# systemctl start orchestrator.service +~~~