失效链接处理 |
MySQL PROXYSQL一读写分离环境搭建 PDF 下载
本站整理下载:
相关截图:
主要内容:
2.安装前准备
参考《MySQL Replication一主多从环境搭建》,完成mysql的一主多从的环境搭建
3.安装proxysql
登录主机设置下载配置,$releasever为centos操作系统版本
cat <<EOF | tee /etc/yum.repos.d/proxysql.repo
[proxysql_repo]
name= ProxySQL YUM repository
baseurl=https://repo.proxysql.com/ProxySQL/proxysql-2.2.x/centos/$releasever
gpgcheck=1
gpgkey=https://repo.proxysql.com/ProxySQL/repo_pub_key
EOF
安装proxysql
yum install proxysql
4.启动 ProxySQL库
启动
systemctl start proxysql.service
查看进程及端口
netstat -anlp | grep proxysql
6032 是 ProxySQL 的管理端口号,6033是对外服务的端口号
查看 ProxySQL 的版本
proxysql --version
5.管理员登录 ProxySQL用户
mysql -uadmin -padmin -h 127.0.0.1 -P 6032
这里的mysql就是安装在主机上的mysql命令
执行 show databases;
6.主库创建用户
需要在my.cnf 加上这个用户认证方式,再来创建用户
[mysqld]
default_authentication_plugin=mysql_native_passwordtar -zxvf mysql_data.tar.gz
重启主库
create user 'monitor'@'%' identified by '123456';
grant all privileges on *.* to 'monitor'@'%' with grant option;
create user 'proxysql'@'%' identified by '123456';
grant all privileges on *.* to 'proxysql'@'%' with grant option;
flush privileges;
查看用户
select user,host,plugin from mysql.user;
用户认证的方式为 mysql_native_password
|