分类: Mysql/postgreSQL
2008-03-26 23:06:48
来源:赛迪网技术社区 作者:daniey |
普通PC server * 2 (最小集群环境需要4台服务器)
模拟环境
red hat linux9 for x86 (or red hat AS 2以上版本),glibc-2.2, static, gcc
MySQL版本4.1.12 binares
mysql-max binary版本目前只支持linux、max os x和solaris
本方案不涉及从源代码编译安装。
安装
从http://dev.mysql.com/downloads/mysql/4.1.html下载mysql-max-4.1.12-pc-linux-gnu-i686.tar.gz到/var/tmp
Storage and SQL Node Installation
在两台主机上执行如下过程:
Management Node Installation
在主机ndb1_mgmd_sqld1上执行如下过程:
|
第一次启动
在主机ndb1_mgmd_sqld1上执行如下过程:
shell>; ndb_mgmd -f /var/lib/mysql-cluster/config.ini
在两台主机上执行如下过程
shell>;ndbd –initial (note:--initial选项只能在第一次启动的时候使用)
shell>;/etc/init.d/mysql.server start
测试
在主机ndb1_mgmd_sqld1上执行如下过程:
|
出现如上信息则表示mysql群集安装成功。
数据抽样测试
在主机ndb1_mgmd_sqld1上执行如下过程:
|
在主机ndb2_sqld2上执行如下过程:
shell>;/usr/local/mysql/bin/mysql -u root mysql
MySQSL>;select * from City;
如果成功显示数据信息,则表示集群已经成功启动。
Safe Shutdown and Restart
在主机ndb1_mgmd_sqld1上执行如下过程:
shell>;ndb_mgm -e shutdown (关闭集群服务器,storage node也会自动被关闭。)
在两台主机上执行如下过程:
shell>;/etc/init.d/mysql.server stop
重新启动集群(顺序不能弄错)
在主机ndb1_mgmd_sqld1上执行如下过程:
shell>; ndb_mgmd -f /var/lib/mysql-cluster/config.ini
在两台主机上执行如下过程:
shell>;/usr/local/mysql/bin/ndbd
启动完ndbd进程后启动sqld进程:
shell>;/etc/init.d/mysql.server start
附:
config.ini中各部分解释:
[COMPUTER]: 定义群集主机.
[NDBD]: 定义群集数据节点.
[MYSQLD]: 定义Sql server节点.
[MGM|NDB_MGMD]: Defines the management server node in the cluster.
[TCP]: Defines TCP/IP connections between nodes in the cluster, with TCP/IP being the default connection protocol.
[SHM]: Defines shared-memory connections between nodes.
在MySQL 4.1.9之前,这个功能必须使用--with-ndb-shm option编译进去, 从MySQL 4.1.9-max版本开始, it is enabled by default。