Como diz: Não coloque localhost no seu arquivo de configuração.
Estou tentando criar uma configuração de cluster mysql entre dois servidores que possui o servidor mysql 5.5 instalado.
no servidor principal, executo o servidor de gerenciamento ndb usando o seguinte comando:
ndb_mgmd -f conf/config.ini --initial --configdir=/storage-mysql/mysql_cluster/conf
meu config.ini no servidor principal é: (mudei meu ip para X.X.X.X)
[computer]
id=db02
hostname=X.X.X.X
[ndb_mgmd]
hostname=localhost
datadir=/storage-mysql/mysql_cluster/ndb_data
nodeid=1
[ndbd default]
noofreplicas=2
datadir=/storage-mysql/mysql_cluster/ndb_data
[ndbd]
hostname=localhost
nodeid=3
[ndbd]
ExecuteOnComputer=db02
hostname=localhost
nodeid=4
[mysqld]
nodeid=50
quando executo o servidor sndb_mgmd, recebo o seguinte erro:
2011-10-02 14:09:47 [MgmtSrvr] ERROR -- at line 9: Mixing of localhost (default for [NDBD]HostName) with other hostname(X.X.X.X) is illegal
2011-10-02 14:09:47 [MgmtSrvr] ERROR -- at line 9: Could not store previous default section of configuration file.
2011-10-02 14:09:47 [MgmtSrvr] ERROR -- Could not load configuration from 'conf/config.ini'
2011-10-02 14:09:47 [MgmtSrvr] ERROR -- Could not determine which nodeid to use for this node. Specify it with --ndb-nodeid=<nodeid> on command line
o que estou fazendo de errado?
usando o MySQL Cluster Management Server em mysql-5.1.56 ndb-7.1.15a
obrigado!
kfir
Tags mysql-cluster