O daemon ndb_mgmd não inicia
Eu quero configurar um cluster NDB Mysql, eu segui a documentação de sua página oficial. Instale a versão 7.5 do mysql-cluster-community e tenho o seguinte esquema
1 nó gerenciador: 192.168.10.137
2 nós mysqld: 192.168.10.140,192.168.10.139
2 nós de dados: 192.168.10.138,192.168.10.141
Este é o arquivo de configuração do gerenciador, meu config.ini;
[ndbd default]
# Options affecting ndbd processes on all data nodes:
NoOfReplicas = 2 # Number of replicas
DataMemory = 80M # How much memory to allocate for data storage
IndexMemory = 18M # How much memory to allocate for index storage
# For DataMemory and IndexMemory, we have used the
# default values. Since the "world" database takes up
# only about 500KB, this should be more than enough for
# this example NDB Cluster setup.
ServerPort = 1186 # This the default value; however, you can use any
# port that is free for all hosts in the cluster
# Note1: It is recommended that you do not specify the port
# number at all and simply allow the default value to be used
# instead
# Note2: The port was formerly specified using the PortNumber
# TCP parameter; this parameter is no longer available in NDB
# Cluster 7.5.
[ndb_mgmd]
# Management process options:
HostName = 192.168.10.137 # Hostname or IP address of MGM node
DataDir = / var / lib / mysql-cluster # Directory for MGM node log files
NodeId = 1
[ndbd]
# Configuration for the data node with ip 139
# (one [ndbd] section per data node)
HostName = 192.168.10.139 # Hostname or IP address
NodeId = 2 # Node ID for this data node
DataDir = / usr / local / mysql / data # Directory for this data node's data files
[ndbd]
# Configuration for the data node with ip 140
HostName = 192.168.10.140 # Hostname or IP address
NodeId = 3 # Node ID for this data node
DataDir = / usr / local / mysql / data # Directory for this data node's data files
[mysqld]
# SQL node options:
HostName = 192.168.10.138 # Hostname or IP address
[mysqld]
# SQL node options:
HostName = 192.168.10.141 # Hostname or IP address
Este é o arquivo de configuração dos nós:
[mysqld]
# Options for mysqld process:
ndbcluster # run NDB storage engine
[mysql_cluster]
# Options for NDB Cluster processes:
ndb-connectstring = 192.168.10.137 # location of management server
Quando tento dizer ao mysql qual é o arquivo de configuração, ele me diz o seguinte:
root @ mysql: /etc/mysql/mysql.conf.d# ndb_mgmd -f /var/lib/mysql-cluster/config.ini
bash: ndb_mgmd: Order not found
Mas se eu usar o comando "ndb_mgm" se eu entrar nesta parte:
- NDB Cluster - Management Client -
ndb_mgm>
E se de lá eu indicar a ordem:
-f /var/lib/mysql-cluster/config.ini
Diz-me o seguinte:
Unable to connect with connect string: nodeid = 0, localhost: 1186
Eu tentei iniciar o ndb_mgm da pasta onde está o arquivo config.ini, mas não consigo executá-lo. Desculpe pelo meu inglês.