自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

MySQL集群簡(jiǎn)介與配置詳解

數(shù)據(jù)庫(kù) MySQL
MySQL集群主要用于解決MySQL性能不足的問(wèn)題,在這里我們將要介紹集群的基本概念,以及一些配置知識(shí)。

1. 先了解一下你是否應(yīng)該用MySQL集群。

減少數(shù)據(jù)中心結(jié)點(diǎn)壓力和大數(shù)據(jù)量處理,采用把MySQL分布,一個(gè)或多個(gè)application對(duì)應(yīng)一個(gè)MySQL數(shù)據(jù)庫(kù)。把幾個(gè)MySQL數(shù)據(jù)庫(kù)公用的數(shù)據(jù)做出共享數(shù)據(jù),例如購(gòu)物車,用戶對(duì)象等等,存在數(shù)據(jù)結(jié)點(diǎn)里面。其他不共享的數(shù)據(jù)還維持在各自分布的MySQL數(shù)據(jù)庫(kù)本身中。

MySQL Cluster Components

2. 集群MySQL中名稱概念.(如上圖)

1)Sql結(jié)點(diǎn)(SQL node--上圖對(duì)應(yīng)為MySQLd):分布式數(shù)據(jù)庫(kù)。包括自身數(shù)據(jù)和查詢中心結(jié)點(diǎn)數(shù)據(jù).

2)數(shù)據(jù)結(jié)點(diǎn)(Data node -- ndbd):集群共享數(shù)據(jù)(內(nèi)存中).

3)管理服務(wù)器(Management Server – ndb_mgmd):集群管理SQL node,Data node.

3.配置

MySQL-max版本,當(dāng)然現(xiàn)在MySQL集群系統(tǒng)windonws平臺(tái)上面不被支持.

安裝MySQL就不多說(shuō)了,網(wǎng)上一大堆,簡(jiǎn)明扼要。

A:192.168.1.251 – Data node和Management Server.

B:192.168.1.254 – SQL node.

當(dāng)然,你也可以讓一個(gè)機(jī)器同時(shí)為3者。

A,B my.inf加上:

  1. [MySQLD]                         
  2. ndbcluster                     # run NDB engine  
  3. ndb-connectstring=192.168.1.251 # location of MGM node  
  4.    
  5. # Options for ndbd process:  
  6. [MySQL_CLUSTER]                  
  7. ndb-connectstring=192.168.1.251 # location of MGM node  
  8.    
  9. A: /var/lib/MySQL-cluster/config.ini  
  10. [NDBD DEFAULT]     
  11. NoOfReplicas=1   # Number of replicas  
  12. DataMemory=80M   # How much memory to allocate for data storage  
  13. IndexMemory=18M  # How much memory to allocate for index storage  
  14.                  # For DataMemory and IndexMemory, we have used the  
  15.                  # default values. Since the "world" database takes up  
  16.                  # only about 500KB, this should be more than enough for  
  17.                  # this example Cluster setup.  
  18. # TCP/IP options:  
  19. [TCP DEFAULT]      
  20. portnumber=2202  # This the default; however, you can use any  
  21.                  # port that is free for all the hosts in cluster  
  22.                  # Note: It is recommended beginning with MySQL 5.0 that  
  23.                  # you do not specify the portnumber at all and simply allow  
  24.                  # the default value to be used instead  
  25. # Management process options:  
  26. [NDB_MGMD]                       
  27. hostname=192.168.1.251          # Hostname or IP address of MGM node  
  28. datadir=/var/lib/MySQL-cluster # Directory for MGM node logfiles  
  29. # Options for data node "A":  
  30. [NDBD]                           
  31. # (one [NDBD] section per data node)  
  32. hostname=192.168.1.251          # Hostname or IP address  
  33. datadir=/usr/local/MySQL/data  # Directory for this data node's datafiles  
  34. # SQL node options:  
  35. [MySQLD]  
  36. hostname=192.168.1.254  
  37. #[MySQLD] #這個(gè)相當(dāng)于192.168.1.251  
  38.   

4. 啟動(dòng)測(cè)試

在管理服務(wù)器上面(這里是192.168.1.251):

  1. shell>ndb_mgmd -f /var/lib/MySQL-cluster/config.ini 

在數(shù)據(jù)結(jié)點(diǎn)服務(wù)器上面(依然是192.168.1.251and more):

  1. shell>ndbd--initial (***次時(shí)加--initial參數(shù)) 

SQL結(jié)點(diǎn)服務(wù)器上面(192.168.1.254):

  1. shell>MySQLd & 

在251上面察看

  1. ./ndb_mgm  
  2.  
  3. -- NDB Cluster -- Management Client --  
  4. ndb_mgm> show  
  5. Connected to Management Server at: 192.168.1.251:1186  
  6. Cluster Configuration  
  7. ---------------------  
  8. [ndbd(NDB)]    1 node(s)  
  9. id=2   @192.168.1.251 (Version:5.0.22, Nodegroup: 0, Master)  
  10.    
  11. [ndb_mgmd(MGM)] 1 node(s)  
  12. id=1   @192.168.1.251 (Version:5.0.22)  
  13.    
  14. [MySQLd(API)]  1 node(s)  
  15. id=3   @192.168.1.254 (Version:5.0.22) 

ok

關(guān)閉集群:

  1. shell>ndb_mgm -e shutdown 

5.基本的集群說(shuō)明

1)在MySQL集群中.當(dāng)table引擎為NDBCLUSTER時(shí)才做集群,其他非NDBCLUSTER表和一般MySQL數(shù)據(jù)庫(kù)表一樣,不會(huì)共享數(shù)據(jù). NDBCLUSTER表數(shù)據(jù)存儲(chǔ)在Data node服務(wù)器內(nèi)存中,Data Node可以為1臺(tái)或多臺(tái)服務(wù)器,它們之間存放共享數(shù)據(jù)。Data Node服務(wù)器可以分組數(shù)據(jù)copy。

例如:2,3,4,5為四臺(tái)Data Node服務(wù)器ID. 2,3為組0。 4,5為組1。 2,3維持?jǐn)?shù)據(jù)相同,4,5維持?jǐn)?shù)據(jù)相同。 組0和組1維持?jǐn)?shù)據(jù)不同。

2)sql node服務(wù)器中,非NDBCLUSTER數(shù)據(jù)存在本身數(shù)據(jù)庫(kù)中,table引擎為NDBCLUSTER時(shí),數(shù)據(jù)存儲(chǔ)在Data Node中。當(dāng)查詢NDBCLUSTER表時(shí),它會(huì)從Data node集群中提起數(shù)據(jù).

3)Manager server

管理SQl node和Data node狀態(tài)。

6深入了解http://dev.MySQL.com/doc/refman/5.0/en/ndbcluster.html

原文鏈接:http://blog.19lou.com/10131711/viewspace-338346 

【編輯推薦】

  1. MySQL數(shù)據(jù)庫(kù)集群進(jìn)行正確配置步驟
  2. MySQL 集群在Server1與Server2上如何安裝MySQL
  3. MySQL集群配置
  4. MySQL集群自動(dòng)安裝腳本
  5. MySQL觸發(fā)器如何正確使用

責(zé)任編輯:彭凡 來(lái)源: 19樓
相關(guān)推薦

2024-05-27 00:04:00

2015-05-06 13:34:14

MySQL集群搭建

2011-03-02 11:25:10

vsftpd配置

2010-11-11 09:06:38

Linux集群LVS

2010-06-02 10:23:46

Linux mysql

2010-05-28 17:39:47

TortoiseSVN

2009-06-12 14:27:49

JBoss集群配置

2011-02-25 11:16:38

ApacheTomcat

2011-03-02 13:28:33

Vsftpd配置

2012-05-30 10:09:57

ApacheTomcat

2010-08-17 15:08:48

MySQL集群

2019-09-16 16:05:13

Redis集群模式

2010-01-13 13:27:07

CentOS vsft

2011-08-05 15:28:47

MySQL數(shù)據(jù)庫(kù)集群負(fù)載均衡

2019-07-04 13:10:53

Docker設(shè)計(jì)云計(jì)算

2012-11-28 10:37:25

Linux集群安裝配置

2010-06-03 15:04:31

NAP IPSEC配置

2010-06-21 14:57:32

Linux apt

2010-10-19 16:32:46

MySQL

2010-08-12 15:30:10

MySQL集群
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)