CentOS7 部署 Mariadb Galera 集群
文章目录
环境
cpu | mem | hostname | public ip | cluster ip | CentOS | MariaDB |
---|---|---|---|---|---|---|
双核 | 2GB | mariadb_1 | 10.0.0.231 | 10.10.10.1 | 7.5 | 10.1.33 |
双核 | 2GB | mariadb_2 | 10.0.0.232 | 10.10.10.2 | 7.5 | 10.1.33 |
双核 | 2GB | mariadb_3 | 10.0.0.233 | 10.10.10.3 | 7.5 | 10.1.33 |
安装数据库
离线安装
- 下载 rpm
- MariaDB-10.1.33-centos7-x86_64-client.rpm
- MariaDB-10.1.33-centos7-x86_64-common.rpm
- MariaDB-10.1.33-centos7-x86_64-server.rpm
- MariaDB-10.1.33-centos7-x86_64-shared.rpm
- galera-25.3.23-1.rhel7.el7.centos.x86_64.rpm
- jemalloc-3.6.0-1.el7.x86_64.rpm
- 安装 rpm
1 2
yum erase mariadb-libs rpm -ivh *.rpm
- 安装后会自动执行数据库初始化脚本,如果未执行,可手动运行
1
mysql_install_db --user=mysql
yum 安装
-
创建 MariaDB-10.1 的 yum 源文件(就近选择一个)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#官方 cat > /etc/yum.repos.d/MariaDB.repo <<-END [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.1/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 END #中科大 cat > /etc/yum.repos.d/MariaDB.repo <<-END [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 gpgcheck=1 END #上海大学 cat > /etc/yum.repos.d/MariaDB.repo <<-END [mariadb] name = MariaDB baseurl = https://mirrors.shu.edu.cn/mariadb/yum/10.1/centos7-amd64 gpgkey=https://mirrors.shu.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB gpgcheck=1 END
-
安装 MariaDB
1 2
yum install MariaDB-client MariaDB-server # galera_4 会作为依赖自动安装
启动server
|
|
安全设置
- 设置root账户密码(推荐)
1
mysqladmin -u root password 'password'
- 数据库安全设置(推荐)
1
mysql_secure_installation
配置Galera Cluster
- 修改/etc/my.cnf.d/server.cnf如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
[server] innodb-flush-log-at-trx-commit=0 innodb-buffer-pool-size=1024M #一半内存 innodb-autoinc-lock-mode=2 default-storage-engine=InnoDB # [mysqld] # [galera] wsrep-on=ON wsrep-provider = /usr/lib64/galera/libgalera_smm.so wsrep-provider-options="gcache.dir=/var/lib/gcache;gcache.size=1G;gcache.recover=yes;pc.recovery=TRUE" wsrep-cluster-name="mariadb_galera_cluster" wsrep-cluster-address = "gcomm://10.10.10.1,10.10.10.2,10.10.10.3" wsrep-node-name = mariadb_1 #当前节点名字 wsrep-node-address = 10.10.10.1 #当前节点地址 binlog-format=ROW wsrep-slave-threads=2 wsrep-sst-method=rsync #wsrep-auto-increment-control=OFF #只通过一个节点做增删改时使用 # [embedded] # [mariadb] # [mariadb-10.1]
停止 server
|
|
启动集群
- 启动 galera cluster
1
mysqld --wsrep-new-cluster --user=mysql
- 查看集群状态
1
show status like 'wsrep_%';
- 在剩余两台服务器启动 server,向集群中添加节点
1
systemctl start mariadb
- 再次查看集群状态
1
show status like 'wsrep_%';
注意事项
- 防火墙开放 3306、4444 和 4567 端口
- 关闭 selinux
- 集群关闭时,/var/lib/mysql/grastate.dat 文件中 safe_to_bootstrap 项为 1 的节点服务器是最后关闭的数据库,数据最全,所以下次集群启动时应从这台节点服务器启动
文章作者 Colben
上次更新 2019-10-30