码迷,mamicode.com
首页 > 数据库 > 详细

Mariadb10 Galera 实验小结

时间:2019-02-22 12:14:14      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:ODB   abort   信息   修改   基础   导致   centos   mys   contain   

Mariadb10 Galera 实验小结
三台服务器作此实验,信息如下:
IP 机器名称 操作系统版本 数据库版本
192.168.88.11 node1 Centos7.5_64 mariadb10
192.168.88.12 node2 Centos7.5_64 mariadb10
192.168.88.13 node3 Centos7.5_64 mariadb10
一、Mariadb10 Galera 初始化准备
1、初始化环境(三台机器上都操作)
A)安装相关的环境包:yum -y install vim wget lrzsz ntpdate
B)同步时间:ntpdate -u times.aliyun.com
C)修改各自主机名:(在每个机器上设置好)
第一台机器:hostname node1 && echo ‘node1’> /etc/hostname 退出后重新登录就可以了
第二台机器:hostname node2 && echo ‘node2’> /etc/hostname 退出后重新登录就可以了
第三台机器:hostname node3 && echo ‘node3’> /etc/hostname 退出后重新登录就可以了
D)vim /etc/hosts文件,加入以下内容:
192.168.88.11 node1
192.168.88.12 node2
192.168.88.13 node3
E)增加mariadb 10版本源
vim /etc/yum.repos.d/mariadb.repo
[mariadb]
name = MariaDB
baseurl = https://mirrors.ustc.edu.cn/mariadb/yum/10.1/centos7-amd64/
gpgkey=https://mirrors.ustc.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB
pgcheck=0
说明:由于从maradb官方网站下载很慢,此处以国内镜像为源
F)安装MariaDB和Galera
yum -y install MariaDB-server MariaDB-client MariaDB-devel galera
G)MariaDB 10安装后初始化配置
systemctl start mysql
mysql_secure_installation
mysql -u root -p --登录数据后进进行授权
MariaDB [(none)]> GRANT ALL PRIVILEGES ON . TO ‘root‘@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit
授权完成后把数据库服务停掉
systemctl stop mysql
二、在各个结点上进行Cluster的安装配置
A)on node1
编辑/etc/my.conf.d/server.conf
vim /etc/my.conf.d/server.conf 在 [galera]下面加入以下内容
wsrep_on=ON
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address="gcomm://192.168.88.12,192.168.88.13"
wsrep_node_name=node1
binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
wsrep_cluster_name="MariaDB_Cluster"
wsrep_node_address=192.168.88.11
wsrep_sst_method=rsync
wsrep_slave_threads=1
innodb_flush_log_at_trx_commit=2
innodb_buffer_pool_size=1024M
wsrep_sst_auth=root:password
B)on node2
编辑/etc/my.conf.d/server.conf
vim /etc/my.conf.d/server.conf 在 [galera]下面加入以下内容
wsrep_on=ON
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address="gcomm://192.168.88.11,192.168.88.13"
wsrep_node_name=node2
binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
wsrep_cluster_name="MariaDB_Cluster"
wsrep_node_address=192.168.88.12
wsrep_sst_method=rsync
wsrep_slave_threads=1
innodb_flush_log_at_trx_commit=2
innodb_buffer_pool_size=1024M
wsrep_sst_auth=root:password
C)on node3
编辑/etc/my.conf.d/server.conf
vim /etc/my.conf.d/server.conf 在 [galera]下面加入以下内容
wsrep_on=ON
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address="gcomm://192.168.88.11,192.168.88.12"
wsrep_node_name=node3
binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
wsrep_cluster_name="MariaDB_Cluster"
wsrep_node_address=192.168.88.13
wsrep_sst_method=rsync
wsrep_slave_threads=1
innodb_flush_log_at_trx_commit=2
innodb_buffer_pool_size=1024M
wsrep_sst_auth=root:password
三、在各个结点上启动Cluster
A)在node1上启动Cluster: /usr/sbin/mysqld --wsrep-new-cluster --user=root
B)在node2上启动Cluster: /etc/init.d/mysql start
B)在node3上启动Cluster: /etc/init.d/mysql start
四、在各个结点上登录Cluster进行验证
任意结点登录数据库,得到以下结果说明Cluster成功
技术图片
五、问题搜集
遇见的问题1: 备点加入集群一直失败
原因:在生产环境中必须打开防火墙,但是我只开放了 4567 和 针对指定ip开放3306 端口,导致加入集群失败,需要开放 3306, 4444, 4567, 4568 四个端口才可以正常启动
遇见的问题2 :遇到以下提示
2019-02-20 13:59:56 140697295214848 [ERROR] WSREP: It may not be safe to bootstrap the cluster from this node. It was not the last one to leave the cluster and may not contain all the updates. To force cluster bootstrap with this node, edit the grastate.dat file manually and set safe_to_bootstrap to 1 .
2019-02-20 13:59:56 140697295214848 [ERROR] WSREP: wsrep::connect(gcomm://192.168.8811,192.168.88.13) failed: 7
2019-02-20 3:59:56 140697295214848 [ERROR] Aborting
解决方案: 按照建议方式修改 vi /var/lib/mysql/grastate.dat
safe_to_bootstrap: 1
可以正常启动。
六、优缺点:引用自http://blog.sina.com.cn/s/blog_548c8a830102vrgw.htm0l
下篇文章写MySQL使用ProxySQL实现读写分离,以上是在项目文档基础上的个人总结,都是直接可以上手用的哈,当然IP地址全部更换为内网IP。

Mariadb10 Galera 实验小结

标签:ODB   abort   信息   修改   基础   导致   centos   mys   contain   

原文地址:https://blog.51cto.com/450955/2353245

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!