時(shí)間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)
Mysql 數(shù)據(jù)庫相信大家已經(jīng)投入了生產(chǎn)使用。很多人都將他和 PHP 集成在 Apache 中,為WebSite 服務(wù)。的確,他們?cè)赪ebSite 中的應(yīng)用比較多,而且PhpMyAdmin 又是一個(gè)PHP+Mysql 的最好應(yīng)用例子。
那么Mysql 能不能實(shí)現(xiàn)兩個(gè)系統(tǒng)之間通過TCP/IP去復(fù)制數(shù)據(jù)庫?能不能實(shí)現(xiàn)實(shí)時(shí)復(fù)制呢?也就是說能不能實(shí)現(xiàn)同步(Synchronization)的問題。先概括介紹一下Mysql 的Replication Database功能。
復(fù)制(Replication)類似于拷貝數(shù)據(jù)庫到另一臺(tái)服務(wù)器上,但它是通過定義Master 和Slave的關(guān)系去實(shí)時(shí)地保證兩個(gè)數(shù)據(jù)庫的完全同步。這個(gè)功能在Mysql的3.23版中開始出現(xiàn)。
下面大家一起來測(cè)試一下Mysql的Replication 功能。
作者的平臺(tái)是:
Master:Mysql 3.23.53-log on FreeBSD 4.7 Release IP:192.168.10.100
Slave: Mysql 3.23.56-log on FreeBSD 4.8 Stable IP:192.168.10.200
1、Master 機(jī)器設(shè)置權(quán)限,賦予Slave Relication 權(quán)利,并打包要同步的數(shù)據(jù)庫結(jié)構(gòu)。
MasterBSD# pwd
/usr/local/mysql/bin
MasterBSD#./mysql –u root –p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 3.23.53-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> GRANT FILE ON *.* TO [email protected] IDENTIFIED BY ‘repplication’;
(賦予192.168.10.200也就是Slave 機(jī)器有File權(quán)限)
然后打包要復(fù)制的數(shù)據(jù)庫
MasterBSD# cd var
MasterBSD# tar czvf repdatabase.tar.gz repdatabase
這樣,我們的到一個(gè)repdatabase數(shù)據(jù)庫的打包文件repdatabase.tar.gz
2設(shè)置主服務(wù)器Master的my.cnf,啟動(dòng)Mysql服務(wù)
MasterBSD# vi /etc/my.cnf
在[mysqld]添加或修改以下的
[mysqld]
log-bin
server-id=1
sql-bin-update-same
binlog-do-db= repdatabase
針對(duì)repdatabase 庫做replication 功能
然后把Master主服務(wù)器的Mysql重啟。
MasterBSD# /usr/local/mysql/bin/mysqladmin –u root –p shutdown
MasterBSD# /usr/local/mysql/bin/safe_mysqld --user=mysql &
3、建立Slave數(shù)據(jù)庫
剛才我們?cè)贛aster中打包了repdatabase.tar.gz,它的作用就是要在Slave恢復(fù)成一樣的數(shù)據(jù)庫。先把Master 的repdatabase.tar.gz文件傳到Slave機(jī)器中去。然后
SlaveBSD# tar zxvf repdatabase.tar.gz -C /usr/local/mysql/var/
4、修改Slave服務(wù)器的my.cnf
SlaveBSD# vi /etc/my.cnf
在[mysqld]添加或修改以下的
master-host=192.168.10.100
master-user=replication
master-password=replication
master-port=3306
server-id=2
master-connect-retry=60
replicate-do-db=reldatabase [要更新的數(shù)據(jù)庫]
log-slave-updates
5、重啟動(dòng)Slave的slave start。
SlaveBSD# /usr/local/mysql/bin/mysqladmin –u root –p shutdown
SlaveBSD# /usr/local/mysql/bin/safe_mysqld --user=mysql &
6、測(cè)試
先檢測(cè)兩個(gè)Mysql數(shù)據(jù)庫中的repdatabase是否正常。
正常情況應(yīng)該是Master和Slave 中的Mysql 都有相同的repdatabase 數(shù)據(jù)庫,并且里面的數(shù)據(jù)都一樣。
然后我們測(cè)試replication 功能是否起用。
在Master中的repdatabas數(shù)據(jù)庫添加一筆數(shù)據(jù):
MasterBSD# /usr/local/mysql/bin/mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12 to server version: 3.23.53-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use repdatabase;
Database changed
mysql> INSERT INTO `rep_table` ( `name` , `num` , `selectd ` ) VALUES ('test1', '4321', 'Y');
Query OK, 1 row affected (0.00 sec)
mysql>
在Slave的數(shù)據(jù)庫中應(yīng)該也會(huì)同樣有這樣一條數(shù)據(jù)
SlaveBSD# /usr/local/mysql/bin/mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 17 to server version: 3.23.56-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select * from repdatabase.rep_table;
+--------+-----------+------------+
| name | num | selectd |
+--------+-----------+------------+
| aaa | 44444 | N |
| ddd | 111112222 | N |
| insert | 1234 | N |
| test | 12345 | N |
| test1 | 4321 | Y | 這一行就是Master插入的時(shí)候Slave 同步得回來的數(shù)據(jù)。
+--------+-----------+------------+
5 rows in set (0.01 sec)
mysql>
到此,我們的兩個(gè)數(shù)據(jù)庫replication 功能實(shí)驗(yàn)成功。
7、互為replication
在Mysql 的文檔資料中也指出了,一臺(tái)Mysql機(jī)器同樣可以作為Master也可以作為Slave的,也可以互相replication數(shù)據(jù)。
8、應(yīng)用
replication可以用在那方面呢?我的想法是,一臺(tái)Mysql生產(chǎn)機(jī)器在提供繁忙的SQL查詢,比如說是股市的查詢,那它僅僅是作為查詢而已。那么我們就可以通過兩臺(tái)機(jī)器,提供查詢的機(jī)器為Slave,那么數(shù)據(jù)錄入的機(jī)器是Master,通過雙網(wǎng)卡去進(jìn)行,請(qǐng)看下圖:
?
關(guān)鍵詞標(biāo)簽:Mysql,數(shù)據(jù)庫
相關(guān)閱讀 10款MySQL數(shù)據(jù)庫客戶端圖形界面管理工具推薦 IIS6.0下配置MySQL+PHP5+Zend+phpMyAdmin MySQL常用維護(hù)管理工具 MySQL CPU 占用 100% 的解決過程 CentOS 6.3安裝配置LAMP服務(wù)器(Linux+Apache+MySQL+PHP5) MySQL服務(wù)器進(jìn)程CPU占用100%解決辦法
熱門文章 Xbox Game Pass 10款MySQL數(shù)據(jù)庫客戶端圖形界面管理工具推薦 MySQL常用維護(hù)管理工具 MySQL數(shù)據(jù)庫啟動(dòng)失敗1067進(jìn)程意外終止的解決辦法總結(jié)
時(shí)間:2021-12-15 13:54:19
時(shí)間:2019-06-14 23:28:33
時(shí)間:2019-04-25 19:16:57
時(shí)間:2019-04-25 19:13:29
時(shí)間:2019-02-20 08:47:03
時(shí)間:2019-02-15 17:37:59
人氣排行 10款MySQL數(shù)據(jù)庫客戶端圖形界面管理工具推薦 MySQL數(shù)據(jù)庫啟動(dòng)失敗1067進(jìn)程意外終止的解決辦法總結(jié) Mysql 1045錯(cuò)誤解決辦法 MySQL服務(wù)器進(jìn)程CPU占用100%解決辦法 MySQL導(dǎo)出導(dǎo)入命令的用例 MySQL連接字符串的實(shí)際操作步驟匯總 MySQL無法啟動(dòng)、無法停止各種解決方法總結(jié) 三種常用的MySQL建表語句