1、 上一篇说道如何设置mysql 的主从复制。
2、下载安装mycat
http://dl.mycat.io/1.6-RELEASE/Mycat-server-1.6-RELEASE-20161028204710-linux.tar.gz
3、加压到/usr/local/下。
4、
mysql_1 是master 主机,mysql_2 是slave。
5、修改schema.xml、 server.xml
server.xml 表示设置用户具有访问哪些数据库的权限,
dml 表示 insert update select delete 0 表示没有权限,1 表示有权限。
这里设置两个用户,root,user 两个账户,root 表示可读可写的权限,user 表示只有读取的权限。
属性 schemas 表示该用户对哪个schema 具有操作的权限,多个用使用如: testdb,test1db, ”逗号隔开。
<?xml version="1.0" encoding="UTF-8"?>
<!-- - - Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License. - You
may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0
- - Unless required by applicable law or agreed to in writing, software -
distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the
License for the specific language governing permissions and - limitations
under the License. -->
<!DOCTYPE mycat:server SYSTEM "server.dtd">
<mycat:server xmlns:mycat="http://io.mycat/">
<!-- 读写都可用的用户 -->
<user name="root" defaultAccount="true">
<property name="password">root</property>
<property name="schemas">testdb</property>
<!-- 表级 DML 权限设置 -->
<!--
<privileges check="false">
<schema name="TESTDB" dml="0110" >
<table name="tb01" dml="0000"></table>
<table name="tb02" dml="1111"></table>
</schema>
</privileges>
-->
</user>
<!-- 只读用户 -->
<user name="user" >
<property name="password">user</property>
<property name="schemas">testdb</property>
<property name="readOnly">true</property>
</user>
</mycat:server>
在配置schema.xml 配置表。
schema 表示逻辑数据库即mycat 的数据库名,
checkSQLschema 表示是否进行sql语句的检查。
dataNode 作为schema的属性。表示该逻辑库所在的节点地址。
datahost 表示数据库实例地址,database 表示需要连接的哪个数据库。
<?xml version="1.0"?>
<!DOCTYPE mycat:schema SYSTEM "schema.dtd">
<mycat:schema xmlns:mycat="http://io.mycat/">
<!--配置逻辑数据库testdb-->
<schema name="testdb" checkSQLschema="false" sqlMaxLimit="100" dataNode="dn1"></schema>
<!-- <dataNode name="dn1$0-743" dataHost="localhost1" database="db$0-743"
/> -->
<dataNode name="dn1" dataHost="nginx.fandong.com" database="test" />
<dataHost name="nginx.fandong.com" maxCon="1000" minCon="10" balance="0"
writeType="0" dbType="mysql" dbDriver="native" switchType="1" slaveThreshold="100">
<heartbeat>select user()</heartbeat>
<!-- can have multi write hosts -->
<writeHost host="hostM1" url="mysql_a.fandong.com:3306" user="root"
password="root">
<!-- can have multi read hosts -->
<readHost host="hostS2" url="mysql_b.fandong.com:3306" user="user" password="user" />
</writeHost>
</dataHost>
</mycat:schema>
测试注意关闭防火墙。或者把ip 端口加入防火墙中,mycat 默认使用的端口为8066端口。
测试:
首先使用root 账户,表示可读可写的测试,写操作在哪个数据库上执行。
在mycat 逻辑数据库上执行插入一条语句。
查看mycat 日志,在查看日志前conf/log4j.xml 信息改为debug 级别。
可以发现写操作确实往master 上写的。
使用user 账号登录,进行数据写操作看看是否能执行成功。
发现直接拦截了,查看数据库是否写成功了?
发现并未写入成功。
使用user 账户查询走的是从数据。