关于mysql的mycat中间件安装与使用详解

mycat是mysqlmysql,前身是阿里大名鼎鼎的cobar,cobar在开源了一段时间后,不了了之。于是mycat扛起了这面大旗,在大数据时代,其重要性愈发彰显。这篇文章主要是mycat的入门部署。

一,什么是mycat

一个彻底开源的,面向企业应用开发的大数据库集群

支持事务、ACID、可以替代MySQL的加强版数据库

一个可以视为MySQL集群的企业级数据库,用来替代昂贵的Oracle集群

一个融合内存mysql技术、NoSQL技术、HDFS大数据的新型SQL Server

结合传统数据库和新型分布式数据仓库的新一代企业级数据库产品

一个新颖的数据库中间件产品

以上是官方说明。其实就是数据库的连接池。mysql proxy也是一种连接池,但是效率很低。

二,mycat mysql

1,下载地址mycat

2,安装mycat

# tar zxvf Mycat-server-1.6-RELEASE-20161028204710-linux.tar.gz -C /usr/local/

三,配置mycat

1,配置server.mysql

# vim /usr/local/mycat/conf/server.xml //添加以下内容     <user>  //mycat用户名   <property>user</property> //mycat密码   <property>mytest</property>  //mycat虚拟数据库名   <property>true</property>  //只读   </user>     <user>   <property>admin</property>   <property>mytest</property>   </user>

在这里要注意,默认的虚拟数据名是TESTDB,如果schema.xml里面没有配置testdb,那就要把testdb改成schema.xml里面有的虚拟数据名。这里定义的用户名和密码,虚拟数据库名,并不是在mysql中真实存在的。

2,配置schema.xml

# cat schema.xml  <?xml  version="1.0"?>nbsp;mycat:schema SYSTEM "schema.dtd"&gt;  <schema><schema></schema>//定义虚拟数据库名mytest  <datanode></datanode> //真实数据库名test  <datahost><heartbeat>select user()</heartbeat><writehost> //真实数据库的连接方式   <readhost></readhost> //同上   </writehost>   </datahost></schema>

mycat的配置参数,相当的多。重点说一下 balance=”1″与writeType=”0″

a. balance mysql负载均衡类型,目前的取值有 4 种:

1. balance=”0″, 不开启读写分离机制,所有读操作都发送到当前可用的 writeHost 上。

2. balance=”1″,全部的 readHost 与 stand by writeHost 参与 select 语句的负载均衡,简单的说,当双主双从模式(M1 ->S1 , M2->S2,并且 M1 与 M2 互为主备),正常情况下, M2,S1,S2 都参与 select 语句的负载均衡。

3. balance=”2″,所有读操作都随机的在 writeHost、 readhost 上分发。

4. balance=”3″, 所有读请求随机的分发到 wiriterHost 对应的 readhost 执行,writerHost 不负担读压力,注意 balance=3 只在 1.4 及其以后版本有, 1.3 没有。

b. writeType 属性

负载均衡类型,目前的取值有 3 种:

1. writeType=”0″, 所有写操作发送到配置的第一个 writeHost,第一个挂了切到还生存的第二个

writeHost,重新启动后已切换后的为准,切换记录在mysql中:dnindex.properties .

2. writeType=”1″,所有写操作都随机的发送到配置的 writeHost。

3. writeType=”2″,没实现。

具体参数:http://mycat.io/mysql/Mycat_V1.6.0.pdf

3,配置主从服务器,就不在这儿说了,博客中有

4,添加真实用户

grant all privileges on test.* to tank@"192.168.%" identified by '123456';  flush privileges

在213,214二台机器上mysql

5,测试真实用户连接,确保schema.xml中配置的真实用户,能连上真实的数据库。注意防火墙。

四,启动mycat

1,常用参数
./mycat start 启动
./mycat smysql 停止
./mycat console 前台运行
./mycat restart 重启服务
./mycat pause 暂停
./mycat status 查看启动mysql

2,启动,并查看mycat

# ./mycat start  Starting Mycat-server...    # netstat -tpnl |grep 8066  tcp 0 0 :::8066 :::* LISTEN 31728/java     # ./mycat status  Mycat-server is running (31726).

五,测试读写分离

# mysql -u tankzhang -p -P 8066 -h 127.0.0.1 //一定要带上127.0.0.1  Enter password:  Welcome to the MySQL monitor. Commands end with ; or g.  Your MySQL connection id is 1  Server version: 5.6.29-mycat-1.6-RELEASE-20161028204710 MyCat Server (OpenCloundDB)    Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.    Oracle is a registered trademark of Oracle Corporation and/or its  affiliates. Other names may be trademarks of their respective  owners.    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.    mysql&gt; show databases;  +----------+  | DATABASE |  +----------+  | mytest |    //虚拟数据库  +----------+  1 row in set (0.00 sec)    mysql&gt; use mytest;  Reading table information for completion of table and column names  You can turn off this feature to get a quicker startup with -A    mysql&gt; CREATE TABLE IF NOT EXISTS `user` (   -&gt; `id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'ID',   -&gt; `name` varchar(20) NOT NULL DEFAULT '' COMMENT '姓名',   -&gt; `create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',   -&gt; PRIMARY KEY (`id`)   -&gt; ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;  Query OK, 0 rows affected (0.08 sec)    Database changed  mysql&gt; show tables;  +----------------+  | Tables_in_test |  +----------------+  | user |  +----------------+  1 row in set (0.01 sec)    mysql&gt; INSERT INTO `user` (`id` ,`name`)VALUES ('1', 'tank');  Query OK, 1 row affected (0.00 sec)    mysql&gt; select * from user;  //修改从数据库的user表中的name,会发现读是从从数据库读取的  +----+-----------+-------------+  | id | name | create_time |  +----+-----------+-------------+  | 1 | tankzhang | 0 |  +----+-----------+-------------+  1 row in set (0.01 sec)

六,小结

mycat支持 mysql的分表,分片等等,但是不建议使用。mycat支持的集群不多,如果能配合mha使用就比较牛B了。

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享