主机mysql配置_一台主机上配置MySQL Cluster

一个管理节点 ndb_mgmd(MGM)

两个数据节点 ndbd(NDB)

两个SQL节点  mysqld(API)

[root@oel5 tmp]# tar xvfz mysql-cluster-gpl-7.1.4b-linux-x86_64-glibc23.tar.gz

[root@oel5 tmp]# mv mysql-cluster-gpl-7.1.4b-linux-x86_64-glibc23 mysqlc

创建数据文件目录:

[root@oel5 /]# cd /mysqlc

[root@oel5 mysqlc]# mkdir data1

[root@oel5 mysqlc]# mkdir data2

[root@oel5 /]# chown -R mysql:dba mysqlc/

创建cluster配置文件:

[root@oel5 mysqlc]# vi config.ini

-----------------------------------------

[NDBD DEFAULT]

NoOfReplicas: 2

[MGM DEFAULT]

PortNumber: 1186

[NDB_MGMD]

Id: 1

HostName: localhost

ArbitrationRank: 1

[NDBD]

Id: 2

HostName: localhost

[NDBD]

Id: 3

HostName: localhost

[mysqld]

Id: 5

HostName: localhost

[mysqld]

Id: 6

HostName: localhost

-----------------------------------------

初始化管理节点(ndb_mgmd):

[root@oel5 /]# cd /mysqlc

[root@oel5 mysqlc]# bin/ndb_mgmd --initial -f config.ini --configdir=/mysqlc

2010-07-27 09:42:49 [MgmtSrvr] INFO     -- NDB Cluster Management Server. mysql-5.1.44 ndb-7.1.4b

2010-07-27 09:42:49 [MgmtSrvr] INFO     -- Reading cluster configuration from 'config.ini'

初始化数据节点(ndbd):

[root@oel5 mysqlc]# bin/ndbd --initial -c localhost:1186

2010-07-27 09:47:42 [ndbd] INFO     -- Configuration fetched from 'localhost:1186', generation: 1

[root@oel5 mysqlc]# bin/ndbd --initial -c localhost:1186

2010-07-27 09:48:32 [ndbd] INFO     -- Configuration fetched from 'localhost:1186', generation: 1

创建两个mysqld(API)节点配置文件:

[root@oel5 mysqlc]# vi my1.cnf

-----------------------------------------

[mysqld]

ndb-nodeid=5

ndbcluster

port            = 9306

datadir = /mysqlc/data1

basedir = /mysqlc

server-id = 1

log-bin

socket = /tmp/mysql5.sock

-----------------------------------------

[root@oel5 mysqlc]# vi my2.cnf

-----------------------------------------

[mysqld]

ndb-nodeid=6

ndbcluster

port            = 9307

datadir = /mysqlc/data2

basedir = /mysqlc

server-id = 2

log-bin

socket = /tmp/mysql6.sock

-----------------------------------------

初始化mysqld(API)节点:

[root@oel5 mysqlc]# scripts/mysql_install_db --basedir=/mysqlc --datadir=/mysqlc/data1

[root@oel5 mysqlc]# scripts/mysql_install_db --basedir=/mysqlc --datadir=/mysqlc/data2

启动mysqld(API)节点:

su - mysql

[mysql@oel5 mysqlc]$ bin/mysqld --defaults-file=my1.cnf &

[1] 8040

[mysql@oel5 mysqlc]$ 100727 10:31:53 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=oel5-bin' to avoid this problem.

100727 10:31:53 [Note] Plugin 'FEDERATED' is disabled.

100727 10:31:53  InnoDB: Started; log sequence number 0 44233

100727 10:31:53 [Note] NDB: NodeID is 5, management server 'localhost:1186'

100727 10:31:53 [Note] NDB[0]: NodeID: 5, all storage nodes connected

100727 10:31:53 [Note] Starting Cluster Binlog Thread

100727 10:31:53 [Note] Event Scheduler: Loaded 0 events

100727 10:31:54 [Note] NDB Binlog: Ndb tables initially read only.

100727 10:31:54 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$mysql/ndb_schema

100727 10:31:54 [Note] NDB Binlog: logging ./mysql/ndb_schema (UPDATED,USE_WRITE)

100727 10:31:54 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$mysql/ndb_apply_status

100727 10:31:54 [Note] NDB Binlog: logging ./mysql/ndb_apply_status (UPDATED,USE_WRITE)

100727 10:31:54 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$test/t_ndb

100727 10:31:54 [Note] NDB Binlog: logging ./test/t_ndb (UPDATED,USE_WRITE)

2010-07-27 10:31:55 [NdbApi] INFO     -- Flushing incomplete GCI:s < 1264/7

2010-07-27 10:31:55 [NdbApi] INFO     -- Flushing incomplete GCI:s < 1264/7

100727 10:31:55 [Note] NDB Binlog: starting log at epoch 1264/7

100727 10:31:55 [Note] NDB Binlog: ndb tables writable

100727 10:31:55 [Note] bin/mysqld: ready for connections.

Version: '5.1.44-ndb-7.1.4b-cluster-gpl-log'  socket: '/tmp/mysql5.sock'  port: 9306  MySQL Cluster Server (GPL)

[mysql@oel5 mysqlc]$ bin/mysqld --defaults-file=my2.cnf &

[2] 8060

[mysql@oel5 mysqlc]$ 100727 10:31:58 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=oel5-bin' to avoid this problem.

100727 10:31:58 [Note] Plugin 'FEDERATED' is disabled.

100727 10:31:59  InnoDB: Started; log sequence number 0 44233

100727 10:31:59 [Note] NDB: NodeID is 6, management server 'localhost:1186'

100727 10:31:59 [Note] NDB[0]: NodeID: 6, all storage nodes connected

100727 10:31:59 [Note] Starting Cluster Binlog Thread

100727 10:31:59 [Note] Event Scheduler: Loaded 0 events

100727 10:32:00 [Note] NDB Binlog: Ndb tables initially read only.

100727 10:32:00 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$mysql/ndb_schema

100727 10:32:00 [Note] NDB Binlog: logging ./mysql/ndb_schema (UPDATED,USE_WRITE)

100727 10:32:00 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$mysql/ndb_apply_status

100727 10:32:00 [Note] NDB Binlog: logging ./mysql/ndb_apply_status (UPDATED,USE_WRITE)

100727 10:32:00 [Note] NDB Binlog: Node: 2, subscribe from node 6, Subscriber bitmask 040

100727 10:32:00 [Note] NDB Binlog: Node: 3, subscribe from node 6, Subscriber bitmask 040

100727 10:32:00 [Note] NDB Binlog: DISCOVER TABLE Event: REPL$test/t_ndb

100727 10:32:00 [Note] NDB Binlog: logging ./test/t_ndb (UPDATED,USE_WRITE)

2010-07-27 10:32:00 [NdbApi] INFO     -- Flushing incomplete GCI:s < 1267/2

2010-07-27 10:32:00 [NdbApi] INFO     -- Flushing incomplete GCI:s < 1267/2

100727 10:32:00 [Note] NDB Binlog: starting log at epoch 1267/2

100727 10:32:00 [Note] NDB Binlog: ndb tables writable

100727 10:32:00 [Note] bin/mysqld: ready for connections.

Version: '5.1.44-ndb-7.1.4b-cluster-gpl-log'  socket: '/tmp/mysql6.sock'  port: 9307  MySQL Cluster Server (GPL)

查看cluster状态:

[mysql@oel5 mysqlc]$ bin/ndb_mgm

-- NDB Cluster -- Management Client --

ndb_mgm> show

Connected to Management Server at: localhost:1186

Cluster Configuration

---------------------

[ndbd(NDB)]     2 node(s)

id=2    @127.0.0.1  (mysql-5.1.44 ndb-7.1.4, Nodegroup: 0, Master)

id=3    @127.0.0.1  (mysql-5.1.44 ndb-7.1.4, Nodegroup: 0)

[ndb_mgmd(MGM)] 1 node(s)

id=1    @127.0.0.1  (mysql-5.1.44 ndb-7.1.4)

[mysqld(API)]   2 node(s)

id=5    @127.0.0.1  (mysql-5.1.44 ndb-7.1.4)

id=6    @127.0.0.1  (mysql-5.1.44 ndb-7.1.4)

建表测试:

[mysql@oel5 ~]$ mysql -S /tmp/mysql5.sock

mysql> use test;

mysql> create table t5 (id int);

mysql> show tables;

+----------------+

| Tables_in_test |

+----------------+

| t5             |

+----------------+

mysql> create table t_ndb (id int) engine=ndb;

mysql> show tables;

+----------------+

| Tables_in_test |

+----------------+

| t5             |

| t_ndb          |

+----------------+

[mysql@oel5 ~]$ mysql -S /tmp/mysql6.sock

mysql> use test;

mysql> show tables;

+----------------+

| Tables_in_test |

+----------------+

| t_ndb          |

+----------------+

mysql> create table t6 (id int);

mysql> show tables;

+----------------+

| Tables_in_test |

+----------------+

| t6             |

| t_ndb          |

+----------------+

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值