MariaDB資料庫管理系統是MySQL的一個分支,主要由開源社群在維護,採用GPL授權許可 MariaDB的目的是完全相容MySQL,包括API和命令列,使之能輕鬆成為MySQL的代替品。在儲存引擎方面,使用XtraDB(英語:XtraDB)來代替MySQL的InnoDB。 MariaDB由MySQL的創始人Michael Widenius(英語:Michael Widenius)主導開發 ----來源百度百科
名稱 | IP地址 |
---|---|
master-s1 | 192.168.1.10 |
slaver-s2 | 192.168.1.20 |
slaver-s3 | 192.168.1.30 |
以上系統的版本均為:CentOS-7-x86_64-DVD-2003
防火牆以及selinux的設定
三臺均執行以下操作:
[root@master-s1 ~]# systemctl stop firewalld
[root@master-s1 ~]# systemctl disable firewalld
[root@master-s1 ~]# setenforce 0
時間同步的設定
在時間伺服器之前,我們修改本地hosts檔案,新增如下內容:
[root@master-s1 ~]# vim /etc/hosts //三臺均瑤執行
192.168.1.10 master-s1
192.168.1.20 slaver-s2
192.168.1.30 slaver-s3
master-s1 設定(作為時間同步服務,讓其他節點都與這一臺的時間同步)
[root@master-s1 ~]# yum install -y ntp ntpdate //安裝時間同步工具以及時間伺服器
[root@master-s1 ~]# ntpdate ntp1.aliyun.com //同步阿里雲的是否伺服器
19 Oct 19:36:52 ntpdate[57124]: adjust time server 120.25.115.20 offset -0.003110 sec
[root@master-s1 ~]# clock -w //儲存時間
[root@master-s1 ~]# vim /etc/ntp.conf //編輯時間同步伺服器的組態檔
17 restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap //取消前面的註釋
18 server 127.127.1.0 //新增一行這個
21 #server 0.centos.pool.ntp.org iburst (註釋以server開頭的行)
22 #server 1.centos.pool.ntp.org iburst
23 #server 2.centos.pool.ntp.org iburst
24 #server 3.centos.pool.ntp.org iburst
[root@master-s1 ~]# systemctl start ntpd //啟動時間伺服器
[root@master-s1 ~]# systemctl enable ntpd
slaver-s2 以及 slaver-s3的設定(設定均一致)
[root@slaver-s2 ~]# yum install -y ntpdate //安裝時間同步工具
[root@slaver-s2 ~]# ntpdate master-s1 //同步節點一
19 Oct 19:51:25 ntpdate[70175]: adjust time server 192.168.1.10 offset 0.015520 sec
[root@slaver-s2 ~]# clock -w //儲存時間
[root@slaver-s2 ~]# crontab -e //設定週期計劃
*/1 * * * * /usr/sbin/ntpdate master-s1 >> /var/log/ntpdate.log //每隔1分鐘自動同步節點一的時間
[root@slaver-s2 ~]# systemctl restart crond
[root@slaver-s2 ~]# systemctl enable crond //設定為開機自動啟動
設定本地yum源
預設的yum中沒有mariadb-server-galera galera這一些叢集包
[root@master-s1 ~]# yum install -y centos-release-openstack-rocky.noarch
[root@master-s1 ~]# yum clean all //清除快取
[root@master-s1 ~]# yum makecache //更新快取
安裝資料庫以及叢集相關的軟體包
[root@master-s1 ~]# yum install mariadb mariadb-server python2-PyMySQL mariadb-server-galera mariadb-galera-common galera xinetd rsync -y
[root@master-s1 ~]# cd /etc/my.cnf.d/ //進入這個目錄
[root@master-s1 my.cnf.d]# ls //這個目錄下會有這一些檔案
auth_gssapi.cnf enable_encryption.preset mariadb-server.cnf tokudb.cnf
client.cnf galera.cnf mysql-clients.cnf
[root@master-s1 my.cnf.d]# vim test.cnf //我們新建一個以.cnf 結尾的檔案
[galera] #名稱 固定
wsrep_on=ON #是否開啟群集
wsrep_provider=/usr/lib64/galera/libgalera_smm.so #存放認證的路徑
wsrep_cluster_address="gcomm://master-s1,slaver-s2,slaver-s3" #群集IP地址,這裡需要注意,第一臺建立群集的不需輸入任何IP地址,第二就需要輸入這個群集裡面所包含的IP地址
binlog_format=row #不用管
default_storage_engine=InnoDB #使用的資料庫引擎為INNODB
innodb_autoinc_lock_mode=3 #群集的節點數是多少
bind-address=0.0.0.0 #無需管
wsrep_cluster_name="MariaDB_Cluster" #群集的名稱
wsrep_node_address="192.168.1.10" #節點的IP地址
wsrep_sst_method=rsync #群集的狀態
[root@master-s1 my.cnf.d]# scp test.cnf root@slaver-s2:/etc/my.cnf.d/ //然後test.cnf 檔案複製到其他兩個節點中去,並修改wsrep_node_address選項為本地IP地址
[root@master-s1 my.cnf.d]# scp test.cnf root@slaver-s3:/etc/my.cnf.d/
啟動各節點的資料庫
master-s1 節點的啟動
[root@master-s1 ~]# /usr/libexec/mysqld --wsrep-new-cluster --user=root &
//節點一需要先執行這個命令來啟動叢集以及資料庫
[root@master-s1 ~]# ss -tan | grep 3306
LISTEN 0 80 *:3306 *:*
slaver-s2 和 slaver-s3 啟動一致
[root@slaver-s2 ~]# systemctl start mariadb //從節點直接開啟資料庫即可,會自動加入到指定的叢集中
[root@slaver-s2 ~]# ss -tan | grep 3306
LISTEN 0 80 *:3306 *:*
各節點登入資料庫測試是否實現同步
在登入資料庫之前,各節點均需要先初始化資料庫才可
[root@master-s1 ~]# mysql_secure_installation
[root@master-s1 ~]# mysql -uroot -p //登入資料庫
Enter password:
MariaDB [(none)]> create database t1; //建立一個資料庫
Query OK, 1 row affected (0.00 sec)
slaver-s2以及slaver-s3檢視是否實現同步
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| t1 |
+--------------------+
4 rows in set (0.00 sec)
檢視當前叢集的節點數以及狀態
MariaDB [(none)]> show status like'wsrep_%';
......
| wsrep_cluster_size | 3 //當前叢集的節點數
| wsrep_local_state_comment | Synced //叢集的狀態為同步狀態
解決資料庫停止掉以後,再次啟動啟動不上
[root@master-s1 ~]# ps -aux |grep mysqld //在主節點上檢視當前mysqld的執行狀態
root 86820 0.4 12.7 1459076 127160 pts/0 Sl 23:02 0:00 /usr/libexec/mysqld --wsrep-new-cluster --user=root
root 90009 0.0 0.0 112824 980 pts/0 R+ 23:05 0:00 grep --color=auto mysqld
22:53 0:00 grep --color=auto mysqld
[root@master-s1 ~]# pkill -9 mysqld //殺掉mysqld主程序
[root@master-s1 ~]#
[1]+ 已殺死 /usr/libexec/mysqld --wsrep-new-cluster --user=root
[root@master-s1 ~]# rm -rf /var/lib/mysql/ * //刪除掉我們之前執行mariadb產生的檔案
[root@master-s1 ~]# chown -R mysql:mysql /var/run/mariadb/mariadb.pid //將mysql的程序號檔案的所屬組以及使用者改為mysql
[root@master-s1 ~]# systemctl start mariadb //然後再次啟動mariadb資料庫 即可
[root@master-s1 ~]# systemctl enable mariadb
安裝haproxy(虛擬埠)
安裝這個軟體,我們可以將資料庫的3306埠對映我們指定的埠暴露在公網下,這樣就極大的提高的資料的安全性
三個節點都需要進行安裝
[root@master-s1 ~]# yum install -y haproxy
[root@master-s1 ~]# vim /etc/haproxy/haproxy.cfg //修改組態檔
42 defaults 在這個項的下面新增如下內容即可
59 listen mariadb_haproxy
60 bind *:3307
61 mode tcp
62 server s1 192.168.1.10:3306 check inter 2000 rise 2 fall 5
63 server s2 192.168.1.20:3306 check inter 2000 rise 2 fall 5
64 server s3 192.168.1.30:3306 check inter 2000 rise 2 fall 5
然後將這個組態檔拷貝到其他節點上即可
[root@master-s1 ~]# scp /etc/haproxy/haproxy.cfg root@slaver-s2:/etc/haproxy/haproxy.cfg
[root@master-s1 ~]# scp /etc/haproxy/haproxy.cfg root@slaver-s3:/etc/haproxy/haproxy.cfg
三個節點均需要執行
[root@master-s1 ~]# systemctl start haproxy //啟動服務
[root@master-s1 ~]# systemctl enable haproxy
Created symlink from /etc/systemd/system/multi-user.target.wants/haproxy.service to /usr/lib/systemd/system/haproxy.service.
[root@master-s1 ~]# ss -tan | grep 3307
LISTEN 0 128 *:3307 *:*
然後我們使用-P 指定埠的引數來登入資料庫測試
[root@master-s1 ~]# mysql -uroot -p -P3307
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 4
Server version: 10.1.20-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
安裝keepalive
使用keepalive軟體,會自動給我們生成一個虛擬的IP地址,這個IP地址是對外開放的,所有外部存取都會請求這個IP地址,然後在返回給我們的資料庫進行處理,相當於叢集的IP地址,主要用於管理整個叢集的
三個節點均要執行
[root@master-s1 ~]# yum install -y keepalived //安裝這個軟體
[root@master-s1 ~]# vim /etc/keepalived/keepalived.conf //修改組態檔 將組態檔裡面的內容全部清空,新增如下內容即可
vrrp_instance VI_1 {
state MASTER #一般主節點的狀態為MASTER 其他節點都為BACKUP
interface ens33 #指定網路卡名稱
virtual_router_id 51
priority 100 #優先順序
advert_int 1
authentication { #認證方式
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
192.168.1.100 dev ens33 #設定叢集IP地址
}
}
[root@master-s1 ~]# scp /etc/keepalived/keepalived.conf root@slaver-s2:/etc/keepalived/keepalived.conf
[root@master-s1 ~]# scp /etc/keepalived/keepalived.conf root@slaver-s3:/etc/keepalived/keepalived.conf
注:拷貝過去的檔案需要進行修改
state BACKUP (兩個節點的狀態均要改為 BACKUP 備份)
priority ? (優先順序兩個節點不能夠一致)
修改完成以後我們就可以啟動keepalive服務(三個節點均需要執行)
[root@master-s1 ~]# systemctl start keepalived
[root@master-s1 ~]# systemctl enable keepalived
啟動完成以後,一般情況下只有我們master-s1節點上會存在叢集的IP地址
[root@master-s1 ~]# ip a
ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
.......
valid_lft forever preferred_lft forever
inet 192.168.1.100/32 scope global ens33
.......
測試,當我們關閉主節點的keepalive服務,看看從節點上會不會出現叢集的IP地址(同一個時刻,叢集的IP地址會根據優先順序來確定存在於那一臺伺服器上)
[root@master-s1 ~]# systemctl stop keepalived
[root@slaver-s2 ~]# ip a
ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0c:29:bd:6e:43 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.20/24 brd 192.168.1.255 scope global noprefixroute ens33
valid_lft forever preferred_lft forever
inet 192.168.1.100/32 scope global ens33
valid_lft forever preferred_lft forever
登入測試
[root@master-s1 ~]# mysql -uroot -p -P3307 -h192.168.1.100
Enter password:
ERROR 1130 (HY000): Host 'master-s1' is not allowed to connect to this MariaDB server
//如果在登入的時候遇到這個問題
解決方法如下:
[root@master-s1 ~]# mysql -uroot -p //登入資料庫
Enter password:
MariaDB [(none)]> grant all privileges on *.* to 'root'@'%' identified by '123' with grant option;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
然後我們在登入測試即可
[root@master-s1 ~]# mysql -uroot -p -P3307 -h192.168.1.100 //輸入對應的埠號以及叢集IP地址即可登入成功
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 15
Server version: 10.1.20-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
至此,mariadb資料庫高可用就此搭建完成了,如有錯誤,請指出改正