MySql分布式存储添加新库新表

一、环境准备:

主机名 角色 IP地址
client50 客户端 192.168.88.50/24
Mycat60 分片服务器 192.168.88.60/24
Mysql63 数据库服务器 192.168.88.63/24
Mysql64 数据库服务器 192.168.88.64/24
Mysql65 数据库服务器 192.168.88.65/24
拓扑图.png

二、操作流程:

  • server.xml添加要创建的新库名
  • schema.xml添加要创建的表名
  • 重启服务
  • 客户端登录验证配置

三、实现操作:

第一步:server.xml添加要创建的新库名

  • 将server.xml中的二个用户进行添加新库“GAMEDB”
[root@host60 conf]# vim /usr/local/mycat/conf/server.xml 

    123456
    TESTDB,GAMEDB  定义库名 


    user
    TESTDB,GAMEDB
    true

第二步:schema.xml添加要创建的表名

  • 添加一组schema标签,定义表名和存储算法
[root@host60 conf]# vim /usr/local/mycat/conf/schema.xml     


  
# 在此行下方添加如下行 其他行不能动
      定义库名

# type="global" 不分片存储,全部存储
...

第三步:重启服务

# 重启mycat服务
[root@host60 conf]# /usr/local/mycat/bin/mycat restart    
# 查看端口号
[root@host56 conf]# netstat  -utnlp  | grep 8066
tcp6       0      0 :::8066                 :::*                    LISTEN      3301/java           

第四步:客户端登录验证配置

  • 客户端登录分片服务器查看新建的库表
[root@host50 ~]# mysql -h192.168.88.60 -P8066 -uroot -p123456               
mysql> show databases;
+----------+
| DATABASE |
+----------+
| GAMEDB   |
| TESTDB   |
+----------+
mysql> use GAMEDB;
mysql> show tables;
+------------------+
| Tables in GAMEDB |
+------------------+
| salary           |
| user             |
+------------------+
  • 存储或操作数据测试
[root@host50 ~]# mysql -h192.168.88.60 -P8066 -uroot -p123456                   
Mysql> use  GAMEDB;

# 创建user表并存储数据
mysql> create table  user( 
  id int  , 
  username char(10) , 
  password  char(6)
);
mysql>  insert into user(id,username,password) 
  values(17,"a","123456"),(17,"b","654321"),(17,"c","121123");
mysql> insert into user(id,username,password) 
  values(4,"a","123456"),(4,"b","654321"),(4,"c","121123");
mysql> insert into user(id,username,password) 
  values(9,"a","123456"),(9,"b","654321"),(9,"c","121123");

# 在数据库服务器本机查看数据
[root@host63 ~]# mysql -uroot -p123qqq...A -e 'select  * from db1.user'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+----------+----------+
| id   | username | password |
+------+----------+----------+
|    9 | a        | 123456   |
|    9 | b        | 654321   |
|    9 | c        | 121123   |
+------+----------+----------+
[root@host64 ~]# mysql -uroot -p123qqq...A -e 'select  * from db2.user'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+----------+----------+
| id   | username | password |
+------+----------+----------+
|    4 | a        | 123456   |
|    4 | b        | 654321   |
|    4 | c        | 121123   |
+------+----------+----------+
[root@host65 ~]# mysql -uroot -p123qqq...A -e 'select  * from db3.user'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+----------+----------+
| id   | username | password |
+------+----------+----------+
|   17 | a        | 123456   |
|   17 | b        | 654321   |
|   17 | c        | 121123   |
+------+----------+----------+
                     
# 创建salary表并存储数据
mysql> create table salary(
  name char(10),
  pay int
);
mysql> insert into salary (name,pay) values("a",10);
mysql> insert into salary (name,pay) values("b",20);
mysql> select  * from  salary;
+------+------+
| name | pay  |
+------+------+
| a    |   10 |
| b    |   20 |
+------+------+
2 rows in set (0.09 sec)

# 在数据库服务器本机查看数据 
[root@host63 ~]# mysql -uroot -p123qqq...A -e 'select  * from db1.salary'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+------+
| name | pay  |
+------+------+
| a    |   10 |
| b    |   20 |
+------+------+
[root@host64 ~]# mysql -uroot -p123qqq...A -e 'select  * from db2.salary'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+------+
| name | pay  |
+------+------+
| a    |   10 |
| b    |   20 |
+------+------+
[root@host65 ~]# mysql -uroot -p123qqq...A -e 'select  * from db3.salary'
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+------+
| name | pay  |
+------+------+
| a    |   10 |
| b    |   20 |
+------+------+
  • 由于salary表的type=global,所以每台数据库服务器存储的数据都是一致的
阅读全文
下载说明:
1、本站所有资源均从互联网上收集整理而来,仅供学习交流之用,因此不包含技术服务请大家谅解!
2、本站不提供任何实质性的付费和支付资源,所有需要积分下载的资源均为网站运营赞助费用或者线下劳务费用!
3、本站所有资源仅用于学习及研究使用,您必须在下载后的24小时内删除所下载资源,切勿用于商业用途,否则由此引发的法律纠纷及连带责任本站和发布者概不承担!
4、本站站内提供的所有可下载资源,本站保证未做任何负面改动(不包含修复bug和完善功能等正面优化或二次开发),但本站不保证资源的准确性、安全性和完整性,用户下载后自行斟酌,我们以交流学习为目的,并不是所有的源码都100%无错或无bug!如有链接无法下载、失效或广告,请联系客服处理!
5、本站资源除标明原创外均来自网络整理,版权归原作者或本站特约原创作者所有,如侵犯到您的合法权益,请立即告知本站,本站将及时予与删除并致以最深的歉意!
6、如果您也有好的资源或教程,您可以投稿发布,成功分享后有站币奖励和额外收入!
7、如果您喜欢该资源,请支持官方正版资源,以得到更好的正版服务!
8、请您认真阅读上述内容,注册本站用户或下载本站资源即您同意上述内容!
原文链接:https://www.shuli.cc/?p=12539,转载请注明出处。
0

评论0

显示验证码
没有账号?注册  忘记密码?