基於Amoeba讀寫分離

 

 

 

Amoeba

原理:amoeba至關於業務員,處理client的讀寫請求,並將讀寫請求分開處理。amoeba和master以及slave都有聯繫,若是是讀的請求,amoeba就從slave讀取信息反饋給client;若是是寫的請求,amoeba會將相關數據寫入master。java

 

 

實驗設備:其中master、slave一、slave2是接上一個MYSQL主從複製操做mysql

master:192.168.200.125linux

slave1:192.168.200.124sql

slave2:192.168.200.111數據庫

amoeba:192.168.200.130apache

client:192.168.200.122vim

 

Amoeba操做:安裝java由於Amoeba是基於jdk1.5版本開發的(版本1.5-1.7不建議使用高版本)後端

1:導入amoeba以及jdk源碼包並修改主配置文件tomcat

[root@localhost ~]# rz
z waiting to receive.**B0100000023be50
[root@localhost ~]# ls
amoeba-mysql-binary-2.2.0.tar.gz    apache-tomcat-8.5.40.tar.gz      jdk-7u65-linux-x64.tar.gz
anaconda-ks.cfg        initial-setup-ks.cfg               original-ks.cfg服務器

[root@localhost ~]# tar xf jdk-7u65-linux-x64.tar.gz
[root@localhost ~]# mv jdk1.7.0_65/ /usr/local/java

[root@localhost ~]# vim /etc/profile

在末尾添加以下五行

JAVA_HOME=/usr/local/java CLASSPATH=$CLASSPATH:$JAVA_HOME/lib:$JAVA_HOME/jre/lib PATH=$PATH:$JAVA_HOME/lib:$JAVA_HOME/jre/bin:$HOME/bin AMOEBA_HOME=/usr/local/amoeba PATH=$PATH:$AMOEBA_HOME/bin

[root@localhost ~]# source /etc/profile
[root@localhost ~]# java -version

2:刪除高版本java程序文件

[root@localhost ~]# rm -rf /usr/bin/java
[root@localhost ~]# source /etc/profile
[root@localhost ~]# java -version

3:安裝並配置Amoeba

[root@localhost ~]# mkdir /usr/local/amoeba
[root@localhost ~]# tar xf amoeba-mysql-binary-2.2.0.tar.gz -C /usr/local/amoeba/
[root@localhost ~]# chmod -R 775 /usr/local/amoeba/

4:配置Amoeba讀寫分離。兩個slave讀負載均衡

編輯amoeba.xml配置文件

[root@localhost ~]# cd /usr/local/amoeba/conf/
[root@localhost conf]# ls
access_list.conf      amoeba.xml      dbServers.xml     functionMap.xml     log4j.xml       ruleFunctionMap.xml
amoeba.dtd            dbserver.dtd      function.dtd         log4j.dtd                   rule.dtd        rule.xml

[root@localhost conf]# cp amoeba.xml amoeba.xml.bak

[root@localhost conf]# vim amoeba.xml


35行左右修改用戶名和登入密碼
# 提供客戶端鏈接amoeba時須要使用這裏設定的帳號 (這裏的帳號密碼和amoeba鏈接後端數據庫服務器的密碼無關)


<property name="user">amoeba</property> <property name="password">123456</property>

115行左右修改

  <property name="defaultPool">master</property>          #默認找master

  <property name="writePool">master</property>            #寫的值交給master
  <property name="readPool">slaves</property>             #讀交給slaves(slaves包括:slave一、slave2)
  

[root@localhost conf]# cp dbServers.xml dbServers.xml.bak

[root@localhost conf]# vim dbServers.xml

23行左右修改:

<property name="port">3306</property> <!-- mysql schema --> <property name="schema">test</property> <!-- mysql user --> <property name="user">test</property> #在master、slave一、slave2三臺服務器中配置Amoeba訪問受權的用戶: <!-- mysql password--> <property name="password">123.com</property> #受權的密碼

45行左右修改:

  <dbServer name="master" parent="abstractServer">       #dbServer指定服務器爲master
  <factoryConfig>
              <!-- mysql ip -->
  <property name="ipAddress">192.168.200.125</property>  #dbServer指定服務器爲ip
  </factoryConfig>
  </dbServer>

  <dbServer name="slave1" parent="abstractServer">       #dbServer指定服務器爲slave1
  <factoryConfig>
              <!-- mysql ip -->
  <property name="ipAddress">192.168.200.124</property>  #dbServer指定服務器爲ip
  </factoryConfig>
  </dbServer>

  <dbServer name="slave2" parent="abstractServer">       #dbServer指定服務器爲slave2
  <factoryConfig>
             <!-- mysql ip -->
  <property name="ipAddress">192.168.200.111</property>   #dbServer指定服務器爲ip
  </factoryConfig>
  </dbServer>

  66行左右修改:

  <dbServer name="slaves" virtual="true">                  #聲明組爲slaves
  <poolConfig class="com.meidusa.amoeba.server.MultipleServerPool">
           <!-- Load balancing strategy: 1=ROUNDROBIN , 2=WEIGHTBASED , 3=HA-->
  <property name="loadbalance">1</property>                #聲明爲1表示輪詢

           <!-- Separated by commas,such as: server1,server2,server1 -->
  <property name="poolNames">slave1,slave2</property>      #聲明組的成員

  

[root@localhost conf]# vim /usr/local/amoeba/bin/amoeba

58行修改以下:

原:DEFAULT_OPTS="-server -Xms256m -Xmx256m -Xss128k"
修改後:DEFAULT_OPTS="-server -Xms256m -Xmx256m -Xss256k"
 

[root@localhost ~]# vim /etc/my.cnf

 

max_allowed_packet = 16M

 

 

 

5:配置無誤後,啓動Amoeba軟件,默認端口爲TCP協議8066

[root@localhost conf]# /usr/local/amoeba/bin/amoeba start &

[root@localhost conf]# netstat -anpt | grep 8066
tcp6 0 0 :::8066 :::* LISTEN 18841/java

6:關閉防火牆
[root@localhost conf]# systemctl stop firewalld
[root@localhost conf]# iptables -F
[root@localhost conf]# setenforce 0

 

 

master主機服務器測試:

 建立一個庫以及表,會自動同步到各個從服務器上,而後關掉各個服務器上的slave功能,再分別插入語句測試

MariaDB [(none)]> create database db_test;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| cmx |
| db_test |
| liuxiang |
| mysql |
| performance_schema |
+--------------------+
6 rows in set (0.00 sec)

MariaDB [(none)]> grant all on *.* to 'test'@'192.168.200.%' identified by '123.com';       #配置Amoeba的訪問受權
Query OK, 0 rows affected (0.15 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> use db_test;
Database changed

MariaDB [db_test]> create table student(id int(10),name varchar(10),address varchar(20));
Query OK, 0 rows affected (0.01 sec)

MariaDB [db_test]> insert into student(id,name,address) values('1','crushlinux','this_is_master');
Query OK, 1 row affected (0.01 sec)

 master測試來自client的數據:

MariaDB [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 4 | crushlinux | this_is_client |
+------+------------+----------------+
2 rows in set (0.00 sec)

 

 

兩臺slave從服務器測試操做一致:

容許200網段內的帳號爲test密碼爲123.com的主機鏈接數據庫

MariaDB [(none)]> grant all on *.* to 'test'@'192.168.200.%' identified by '123.com';       #slave一、slave2都配置這個Amoeba的訪問受權
Query OK, 0 rows affected (0.15 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> show databases;                           
+--------------------+
| Database |
+--------------------+
| information_schema |
| client |
| cmx |
| db_test |
| liuxiang |
| mydb |
| mysql |
| performance_schema |
| shuifei |
| var |
| yg |
+--------------------+
11 rows in set (0.13 sec)

MariaDB [(none)l]> use db_test;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 2 | crushlinux | this_is_slave1 |
+------+------------+----------------+
2 rows in set (0.00 sec)

MariaDB [(none)]> stop slave;                                           #主服務器插入完數據後再執行stop slave
Query OK, 0 rows affected (0.01 sec)

MariaDB [db_test]> insert into student values('2','crushlinux','this_is_slave1');          #slave2改成('3,'crushlinux','this_is_slave2');  
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> start slave;
Query OK, 0 rows affected (0.00 sec)

測試來自client的數據:

MariaDB [(none)]> select * from db_test.student;                    #slave1的測試

+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 2 | crushlinux | this_is_slave1 |
| 4 | crushlinux | this_is_client |
+------+------------+----------------+
3 rows in set (0.00 sec)

MariaDB [(none)]> select * from db_test.student;                       #slave2的測試
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 3 | crushlinux | this_is_slave2 |
| 4 | crushlinux | this_is_client |
+------+------------+----------------+
3 rows in set (0.00 sec)

 

Client機配置:

安裝mariadb作訪問amoeba機的測試

[root@localhost ~]# yum install mariadb mariadb-server -y

遠程登錄mysql客戶端經過指定amoeba配置文件中指定的用戶名、密碼、和端口以及amoeba服務器ip地址連接mysql數據庫

[root@localhost ~]# mysql -u amoeba -p123456 -h 192.168.200.130 -P 8066
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MySQL connection id is 411716403
Server version: 5.1.45-mysql-amoeba-proxy-2.2.0

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

測試讀操做:

MySQL [db_test]> select * from student;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 1696547550
Current database: db_test

+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 2 | crushlinux | this_is_slave1 |
+------+------------+----------------+
2 rows in set (0.20 sec)

MySQL [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 3 | crushlinux | this_is_slave2 |
+------+------------+----------------+
2 rows in set (0.01 sec)

MySQL [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 2 | crushlinux | this_is_slave1 |
+------+------------+----------------+
2 rows in set (0.01 sec)

MySQL [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 3 | crushlinux | this_is_slave2 |
+------+------------+----------------+
2 rows in set (0.01 sec)

 測試寫操做:

MySQL [db_test]> insert into student values('4','crushlinux','this_is_client');
Query OK, 1 row affected (0.01 sec)

MySQL [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 2 | crushlinux | this_is_slave1 |
| 4 | crushlinux | this_is_client |
+------+------------+----------------+
3 rows in set (0.01 sec)

MySQL [db_test]> select * from student;
+------+------------+----------------+
| id | name | address |
+------+------------+----------------+
| 1 | crushlinux | this_is_master |
| 3 | crushlinux | this_is_slave2 |
| 4 | crushlinux | this_is_client |
+------+------------+----------------+
3 rows in set (0.01 sec)

 

測試完成可讀可寫!

相關文章
相關標籤/搜索