我有一个关于 MySQL 集群的问题。我通过安装
“apt-get install mysql-server-cluster”集群在 3 台 Ubuntu 10.04 机器上。一切正常。它们是相连的,一个是管理节点,另外两个服务器充当存储节点。现在我有一个大问题。ndbcluster 引擎在引擎列表中显示为引擎,但不受支持。如何启用 ndbcluster 引擎?
提前非常感谢。
BR,克里斯托夫
我有一个关于 MySQL 集群的问题。我通过安装
“apt-get install mysql-server-cluster”集群在 3 台 Ubuntu 10.04 机器上。一切正常。它们是相连的,一个是管理节点,另外两个服务器充当存储节点。现在我有一个大问题。ndbcluster 引擎在引擎列表中显示为引擎,但不受支持。如何启用 ndbcluster 引擎?
提前非常感谢。
BR,克里斯托夫
The first recommendation I'd make is to use the latest version of MySQL Cluster 7.2 from http://dev.mysql.com/downloads/cluster/
The other thing is to check that in the my.cnf file that you use for your mysqld process that you include the line...
ndbcluster
... under the "[mysqld]" tag.
You can tell if the mysqld process has then connected to the cluster by running "ndb_mgm -e show". If things still aren't going well then try following the instructions from this blog on running MySQL Cluster over multiple Linux hosts.
Regards, Andrew.