dbproxy 的账号是统一的, 即连接dbproxy,连接主mysql ,连接从mysql 的账号必须一样, 为了隔离 即使用dbproxy的人感知不到mysql, 需要分离

配置文件

#dbproxy账号密码与real 主mysql 和 从mysql 隔离
dbproxy-user=test
dbproxy-pwd=7O7YJJEK
master-user = master
master-pwd = 7O7YJJEK
slave-user = slave
slave-pwd = 7O7YJJEK

struct chassis_plugin_config
位置plugins/proxy/proxy-plugin.h

struct chassis_plugin_config {
...
gchar* id_generate;
gchar* dbproxy_user;
gchar* dbproxy_pwd;
gchar* master_user;
gchar* master_pwd;
gchar* slave_user;
gchar* slave_pwd;
...
}

network_mysqld_proxy_plugin_new
位置:/plugins/proxy/proxy-plugin.c

chassis_plugin_config * network_mysqld_proxy_plugin_new(void) {
...
config = g_new0(chassis_plugin_config, );
config->id_generate = NULL;
config->dbproxy_user = NULL;
config->dbproxy_pwd = NULL;
config->master_user = NULL;
config->master_pwd = NULL;
config->slave_user = NULL;
config->slave_pwd = NULL;
...
}

network_mysqld_proxy_plugin_free
位置:/plugins/proxy/proxy-plugin.c

void network_mysqld_proxy_plugin_free(chassis_plugin_config *oldconfig) {
...
if (config->id_generate) g_free(config->id_generate);
if (config->dbproxy_user) g_free(config->dbproxy_user);
if (config->dbproxy_pwd) g_free(config->dbproxy_pwd);
if (config->master_user) g_free(config->master_user);
if (config->master_pwd) g_free(config->master_pwd);
if (config->slave_user) g_free(config->slave_user);
if (config->slave_pwd) g_free(config->slave_pwd);
...
}

network_mysqld_proxy_plugin_get_options
位置:/plugins/proxy/proxy-plugin.c

static chassis_options_t * network_mysqld_proxy_plugin_get_options(chassis_plugin_config *oldconfig) {
if (config->opts == NULL) {
chassis_options_t *opts = chassis_options_new();
chassis_options_add(opts, "id-generate", , , G_OPTION_ARG_STRING, &(config->id_generate), "id-generate", NULL, NULL, NULL, ); chassis_options_add(opts, "dbproxy-user", , , G_OPTION_ARG_STRING, &(config->dbproxy_user), "dbproxy-user", NULL, NULL, NULL, ); chassis_options_add(opts, "dbproxy-pwd", , , G_OPTION_ARG_STRING, &(config->dbproxy_pwd), "dbproxy-pwd", NULL, NULL, NULL, ); chassis_options_add(opts, "master-user", , , G_OPTION_ARG_STRING, &(config->master_user), "master-user", NULL, NULL, NULL, ); chassis_options_add(opts, "master-pwd", , , G_OPTION_ARG_STRING, &(config->master_pwd), "master-pwd", NULL, NULL, NULL, ); chassis_options_add(opts, "slave-user", , , G_OPTION_ARG_STRING, &(config->slave_user), "slave-user", NULL, NULL, NULL, ); chassis_options_add(opts, "slave-pwd", , , G_OPTION_ARG_STRING, &(config->slave_pwd), "slave-pwd", NULL, NULL, NULL, ); config->opts = opts;
}
return config->opts;
}

network_mysqld_proxy_plugin_apply_config
位置:/plugins/proxy/proxy-plugin.c

int network_mysqld_proxy_plugin_apply_config(chassis *chas, chassis_plugin_config *oldconfig) {
gchar *user = NULL, *pwd = NULL, *user_master = NULL, *pwd_master = NULL, *user_slave = NULL, *pwd_slave = NULL;
user = config->dbproxy_user;
pwd = config->dbproxy_pwd;
user_master = config->master_user;
pwd_master = config->master_pwd;
user_slave = config->slave_user;
pwd_slave = config->slave_pwd; char* raw_pwd = decrypt(pwd);
char* raw_pwd_master = decrypt(pwd_master);
char* raw_pwd_slave = decrypt(pwd_slave); if (raw_pwd && raw_pwd_master && raw_pwd_slave) {
GString* hashed_password = g_string_new(NULL);
network_mysqld_proto_password_hash(hashed_password, raw_pwd, strlen(raw_pwd)); /*
主库 设置密码
*/
GString* hashed_password_master = g_string_new(NULL);
network_mysqld_proto_password_hash(hashed_password_master, raw_pwd_master, strlen(raw_pwd_master)); /*
从库 设置密码
*/
GString* hashed_password_slave = g_string_new(NULL);
network_mysqld_proto_password_hash(hashed_password_slave, raw_pwd_slave, strlen(raw_pwd_slave));
     
/*
hash
key: username (dbproxy本身的账号)
value: 加密过的dbproxy本身的密码, 加密过的主mysql密码,加密过的从mysql密码,
主mysql 账号, 从mysql 账号
*/  user_info_hval *hval = user_info_hval_new(hashed_passwo rd, hashed_password_master, user_master, hashed_password_slave, user_slave); /*
保存密码明文, 这里是个数组,感觉作用不到,因为只有一组账号密码在起作用
*/
raw_user_info *rwi = raw_user_info_new(user, pwd, NULL, NULL, user_master, pwd_master, user_slave, pwd_slave); g_rw_lock_writer_lock(&bs->user_mgr_lock);
if (g_hash_table_lookup(bs->pwd_table, user) == NULL) {
g_hash_table_insert(bs->pwd_table, g_strdup(user), hval);
g_ptr_array_add(bs->raw_pwds, rwi);
}
g_rw_lock_writer_unlock(&bs->user_mgr_lock); //g_free(tmp_for_free);
g_free(raw_pwd);
} raw_user_info *
raw_user_info_new(const gchar *username, const gchar *encrypt_pwd, const gchar *user_hosts, gchar *backends, const gchar* user_master, const gchar* encrypt_pwd_master, const gchar* user_slave, const gchar* encrypt_pwd_slave) {
raw_user_info *rwi = NULL; g_assert(username != NULL); rwi = g_new0(raw_user_info, );
rwi->username = g_strdup(username);
if (encrypt_pwd) {
rwi->encrypt_pwd = g_strdup(encrypt_pwd);
}
if (user_hosts) {
rwi->user_hosts = g_strdup(user_hosts);
}
if (backends) {
rwi->backends = g_strdup(backends);
} rwi->user_master = g_strdup(user_master);
rwi->encrypt_pwd_master = g_strdup(encrypt_pwd_master); rwi->user_slave = g_strdup(user_slave);
rwi->encrypt_pwd_slave = g_strdup(encrypt_pwd_slave); return rwi;
}

保存主mysql 账号 , 从mysql 账号

//user_info_hval_new(hashed_password, hashed_password_real_db, username_real_db, host_real_db);

user_info_hval *
user_info_hval_new(GString *hashed_passwd, GString *hashed_password_master, gchar* user_master, GString *hashed_password_slave, gchar* user_slave) {
user_info_hval *hval = g_new0(user_info_hval, ); hval->user_hosts = g_ptr_array_new_with_free_func(g_free);
hval->backends_tag = g_ptr_array_new_with_free_func(g_free); hval->hashed_password = hashed_passwd;
hval->user_tag_max_weight = ; /*
主库账号和密码
*/
hval->user_master = g_strdup(user_master);
hval->hashed_password_master = hashed_password_master; /*
从库账号和密码
*/
hval->user_slave = g_strdup(user_slave);
hval->hashed_password_slave = hashed_password_slave; return hval;
}

dbproxy-user/pwd的更多相关文章

  1. linux下 php 安装mysql的扩展模块

    1.安装mysql-devel包 [root@DBproxy ~]# yum install mysql-devel 注:该包必须在编译php之前安装好,否则在安装php的mysql扩展模块是会碰到各 ...

  2. 美团点评DBProxy读写分离使用说明

    目的 因为业务架构上需要实现读写分离,刚好前段时间美团点评开源了在360Atlas基础上开发的读写分离中间件DBProxy,关于其介绍在官方文档已经有很详细的说明了,其特性主要有:读写分离.负载均衡. ...

  3. DBProxy 读写分离使用说明

    美团点评DBProxy读写分离使用说明   目的 因为业务架构上需要实现读写分离,刚好前段时间美团点评开源了在360Atlas基础上开发的读写分离中间件DBProxy,关于其介绍在官方文档已经有很详细 ...

  4. DBProxy 项目全解

    转载自:https://github.com/Meituan-Dianping/DBProxy/blob/master/doc/USER_GUIDE.md#2 1 总体信息        1.1 关于 ...

  5. linux常用命令(2)pwd命令

    pwd 命令1 命令格式:pwd [选项]2 命令功能查看当前工作目录的完整路径3 常用参数一般不带任何参数如果目录是链接时:pwd -P 显示实际路径,而非使用链接路径4 常用实例:4.1 用pwd ...

  6. pwd命令

    [pwd]      打印当前的工作目录             pwd==print work director 命令格式: pwd [OPTION]... 命令功能: 打印当前工作目录的全路径 命 ...

  7. Linux命令学习总结:pwd命令

    命令简介: 该命令用来显示目前所在的工作目录.指令英文原义:print work directory 执行权限    :All User 指令所在路径:/usr/bin/pwd 或 /bin/pwd ...

  8. 每天一个linux命令(3):pwd命令

    Linux中用 pwd 命令来查看”当前工作目录“的完整路径. 简单得说,每当你在终端进行操作时,你都会有一个当前工作目录. 在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置. ...

  9. 【初级】linux pwd 命令详解及使用方法实战

    pwd:查看当前工作目录 前言: Linux中用 pwd 命令来查看”当前工作目录“的完整路径,就是经常提及的所在目录,多用在生产环境多级目录中查看当前所在路径,使用此命令能给运维人员/操作人员带来很 ...

随机推荐

  1. Unity3d 下websocket的使用

    今天介绍一下如何在Unity3D下使用WebSocket. 首先介绍一下什么是websocket,以及与socket,和http的区别与联系,然后介绍一下websocket的一些开源的项目. WebS ...

  2. git回滚到某个commit 上和 返回最新的版本git

    1. 代码回退 首先你要用git log 查看你要回到的那个本版, 然后用 git reset --hard HEAD^ 回退到上个版本 git reset --hard commit_id 退到/进 ...

  3. module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'

    #tf.contrib.rnn.core_rnn_cell.BasicLSTMCell(lstm_size) tf.contrib.rnn.BasicLSTMCell(lstm_size)

  4. spring4-3-AOP-基于配置文件

    1.建立业务类和切面类 2.在配置文件中配置bean 引入命名空间:

  5. 实践作业4---DAY4阶段三。

    阶段三:给出结论 这一阶段,我们首先列表从核心功能.细节.用户体验.辅助功能差异化功能.软件的适应性和成长性展开.我们得结论前参考了权威网站数据.并自己也做了相应分析. 结论:经过这么多工作,这个软件 ...

  6. Smarty配置与实例化

    在smarty文件夹下建立一个test文件夹,test下建立如下: 编辑test.php如下: <?php require('../smarty/Smarty.class.php'); $sma ...

  7. (转)一个故事讲完https

    (转)一个故事讲完https 2 1  序言 今天来聊一聊https 安全传输的原理. 在开始之前,我们来虚构两个人物, 一个是位于中国的张大胖(怎么又是你?!), 还有一个是位于米国的Bill (怎 ...

  8. arch+win7 双系统启动引导

    笔者的电脑之前已经安装了win7,安装完arch后电脑中存在两个系统,因此需要引导连个系统. 1. 在安装arch时,一般都会安装grub.如果没有安装,则参考arch wiki中 grub2一节安装 ...

  9. Python之迭代器,生成器与装饰器

    1>迭代器原理及使用: 1>原理: 迭代器是访问集合元素的一种方式,迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问完结束:迭代器只能往前不会后退,不过这也没什         ...

  10. Tomcat安装JPress

    上线代码有两种方式,第一种方式是直接将程序目录放在webapps目录下面,这种方式大家已经明白了,就不多说了.第二种方式是使用开发工具将程序打包成war包,然后上传到webapps目录下面.下面让我们 ...