共计 2222 个字符,预计需要花费 6 分钟才能阅读完成。
这里的实验环境还是使用我们上一节的 http://www.linuxidc.com/Linux/2014-03/98673.htm
首先停止节点资源,然后删除
NFS 共享存储节点配置:
# mkdir /mydata
# vim /etc/exports
/mydata 192.168.100.0/24(no_root_squash,rw)
# service nfs restart
# groupadd -g 3306 MySQL
# useradd -g 3306 -u 3306 -s /sbin/nologin -M mysql
# chown -R /mydata
注:这里必需将 nfs 共享的资源设定为 no_root_squash,否则 mysql 服务无法启动
Node 节点配置:
在这里 node1 与 node2 的配置完全一样
# groupadd -g 3306 mysql
# useradd -g 3306 -u 3306 -s /sbin/nologin -M mysql
# mkdir /mydata
# tar xvf mysql-5.5.22-linux2.6-i686.tar.gz -C /usr/local/
# cd /usr/local/
# ln -s mysql-5.5.22-linux2.6-i686/ mysql
# cd mysql
# chown -R root:mysql .
# mount -t nfs 192.168.100.9:/mydata /mydata
# cd /usr/local/mysql/
# scripts/mysql_install_db –user=mysql –datadir=/mydata/data
# ln -s /usr/local/mysql/bin/* /usr/bin/
# cp support-files/my-large.cnf /etc/my.cnf
# vim /etc/my.cnf
datadir = /mydata/data
innodb_file_per_table = 1
# cp support-files/mysql.server /etc/init.d/mysqld
# chkconfig –add mysqld
# chkconfig mysqld off
# service mysqld start
# scp /ect/my.cnf node2:/etc
# scp /etc/init.d/mysqld node2:/etc/init.d
# service mysqld start
# mysql
测试 mysql 是否正常使用
mysql> create database mydb;
mysql> grant all privileges on *.* to root@’%’ identified by ‘asdasd’;
mysql> flush privileges;
# service mysqld stop
# service heartbeat start
# ssh node2 ‘service heartbeat start’
# hb_gui
注意
1. 使用上面这条命令必需在 DC 上连接与配置,否则会启动失败,查看哪个节点是 DC,我们可以使用命令 crm_mon
2. 测试完必后必需将每个节点的 mysql 设为开机关闭,且卸载 nfs 共享存储
添加组与资源,使用上一节的步骤:
至此,我们可以从任何一台 mysql 客户机登陆我们 mysql 高可用集群了
测试在 nfs 服务器上登陆 mysql 集群,看它是否一切正常:
[root@fs ~]# mysql -uroot -h 192.168.100.10 -p
mysql> show databases;
+——————–+
| Database |
+——————–+
| information_schema |
| mydb |
| mysql |
| performance_schema |
| test |
+——————–+
5 rows in set (0.01 sec)
mysql> use mydb;
Database changed
mysql> create table test1 (
-> id int not null auto_increment primary key,
-> name varchar(20) not null
-> );
Query OK, 0 rows affected (0.11 sec)
推荐阅读:
Linux 高可用(HA)集群之 heartbeat 基于 crm 进行资源管理详解 http://www.linuxidc.com/Linux/2013-08/89167.htm
Heartbeat+httpd+NFS 实现高可用的 Web 服务器 http://www.linuxidc.com/Linux/2013-08/88520.htm
Linux 高可用(HA)集群之 Heartbeat 详解 http://www.linuxidc.com/Linux/2013-08/88521.htm
Linux 高可用性方案之 Heartbeat 的 CRM 配置 http://www.linuxidc.com/Linux/2012-05/60838.htm
高可用集群 Heartbeat v1 实例 http://www.linuxidc.com/Linux/2013-09/90757.htm
LVS+heartbeat+ldirectord 高可用负载均衡集群解决方案 http://www.linuxidc.com/Linux/2011-09/42911.htm