LVS+keepalived高可用负载均衡集群部署(一)
l系统环境: RHEL7l硬件环境:虚拟机
l项目描述:为解决网站访问压力大的问题,需要搭建高可用、负载均衡的 web集群。
l架构说明:整个服务架构采用功能分离的方式部署。后端采用2台mysql 数据库,实现主从结构以及读写分离。中间LAMP网站服务器共有2台, 前端 2台LVS服务器通过keepalived实现高可用负载均衡。
l关键技术:keepalived 、lvs DR模式 、mysql主从 、maxscale 读写 分离
l项目拓扑图:
http://s1.运维网.com/images/20180303/1520044280508962.png
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
注:所有系统 环境 禁用selinux和防火墙
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
l:
mysql_11 :192.168.4.11 作为数据库主服务器
mysql_22 :192.168.4.22 作为数据库从服务器
mysql_77 :192.168.4.77 作为数据库读写分离服务器
http://s1.运维网.com/images/20180303/1520044290926415.png
http://s1.运维网.com/images/20180303/1520044295763608.png
http://s1.运维网.com/images/20180303/1520044330131902.png
l步骤一:创建安装包存放目录11、22、77
mkdir /root/tar_home
l步骤二:下载数据库软件包,这里我们选择mysql
下载地址:https://dev.mysql.com/downloads/mysql/ 注意:需要注册一个账号
http://s1.运维网.com/images/20180303/1520044349572227.png
http://s1.运维网.com/images/20180303/1520044364955247.png
l备注:我们这里有5.7.17版本的,就不浪费时间下载5.7.21版本了。
l步骤三:通过xftp传输mysql安装包,然后开始安装11、22同样的配置步骤:
http://s1.运维网.com/images/20180303/1520044390754363.png
l# rm haha/mysql-community-server-minimal-5.7.17-1.el7.x86_64.rpm
rm:是否删除普通文件 "haha/mysql-community-server-minimal-5.7.17-1.el7.x86_64.rpm"?y
#删除最小化安装文件
l# which createrepo #查看有没有createrepo命令没有则安装提供命令的安装包
/usr/bin/createrepo
l# rpm -q createrepo
createrepo-0.9.9-23.el7.noarch
l# createrepo haha/ #创建索引文件repodata
Spawning worker 0 with 11 pkgs
Workers Finished
Saving Primary metadata
Saving file lists metadata
Saving other metadata
Generating sqlite DBs
Sqlite DBs complete
http://s1.运维网.com/images/20180303/1520044411336707.png
l# vim /etc/yum.repos.d/hehe.repo#编辑yum源
http://s1.运维网.com/images/20180303/1520044416350936.png
l# yum clean all
l# yum repolist
http://s1.运维网.com/images/20180303/1520044422287221.png
l# yum -y install mysql-community-* #安装mysql数据库
l启动服务并设置开机自启,并验证
# systemctl start mysqld
# systemctl enable mysqld
http://s1.运维网.com/images/20180303/1520044431436129.png
l# cat /var/log/mysqld.log | grep password #查看mysql初始密码
2018-03-02T11:37:27.225479Z 1 A temporary password is generated for root@localhost: 52hjzs/FZrfu
l# mysql -uroot -p'52hjzs/FZrfu' #并进行首次登录
http://s1.运维网.com/images/20180303/1520044438555841.png
设置数据库密码:
# vim /etc/my.cnf——》修改数据库主配置文件
validate_password_policy=0 ——》修改密码的验证策略(0表示只检查密码长度,默认8位长度)
validate_password_length=6 ——》修改密码的默认长度
# systemctl restart mysqld——》重启数据库
# mysql -uroot -p'8tuwu8
页:
[1]