一、概述
keepalived介绍:Keepalived的作用是检测web服务器的状态,如果有一台web服务器死机,或工作出现故障,Keepalived将检测到,并将有故障的web 服务器从系统中剔除,当web服务器工作正常后Keepalived自动将web服务器加入到服务器群中,这些工作全部自动完成,不需要人工干涉,需要人 工做的只是修复故障的web服务器。
二、环境
vip:192.168.1.203/204mysql-master:192.168.1.231mysql-slave:192.168.1.232
三、keepalived安装
安装步骤两台机mysql-master、mysql-slave一样,如下:
1、下载地址:http://www.keepalived.org/software/keepalived-1.2.12.tar.gz
shell>wget http://www.keepalived.org/software/keepalived-1.2.12.tar.gz
2、安装环境
yum -y install openssl-devel
否则会报如下错误
configure: error:!!! OpenSSL is not properly installed on your system. !!!!!! Can not include OpenSSL headers files.
3、安装
shell>tar -zxvfkeepalived-1.2.12.tar.gzshell>cd keepalived-1.2.12shell>./configure --prefix=/opt/keepalived --with-kernel-dir=/usr/src/kernels/2.6.32-431.el6.x86_64/shell>make shell>make install
说明:
--prefix:安装路径
--with-kernel-dir:这个是重要的参数,这个参数并不表示我们要把Keepalived统进内核,而是指使用内核源码里面的头文件,也就是include目录。
2.6.32-431.el6.x86_64可以通过
shell>uname -r 命令查看到
4、配置
# cp /opt/keepalived/etc/rc.d/init.d/keepalived /etc/rc.d/init.d/# cp /opt/keepalived/etc/sysconfig/keepalived /etc/sysconfig/# mkdir /etc/keepalived# cp /opt/keepalived/etc/keepalived/keepalived.conf /etc/keepalived/# cp /opt/keepalived/sbin/keepalived /usr/sbin/
5、启动/停止
shell>service keepalived startshell>service keepalived stopshell>service keepalived restart
四、keepalived配置
1、mysql-master:192.168.1.231的配置
shell>vim /etc/keepalived/keepalived.conf
配置如下:
global_defs { router_id mysql-master #修改为自己的主机名 notification_email { mengtao10@163.com #接收邮件,可以有多个,一行一个} #当主、备份设备发生改变时,通过邮件通知 notification_email_from lzyangel@126.com #发送邮箱服务器 smtp_server stmp.163.com #发送邮箱超时时间 smtp_connect_timeout 30 }##################第一部分###################vrrp_instance VI_1 { state BACKUP#都修改成BACKUP interface eth0#绑定的网卡 virtual_router_id 60 #默认51 主从都修改为60 priority 100 #优先级,在mysql-slave上LVS上修改成80 advert_int 1 nopreempt #不抢占资源,意思就是它活了之后也不会再把主抢回来 authentication { # 认证方式,可以是PASS或AH两种认证方式 auth_type PASS # 认证密码 auth_pass 1111 }virtual_ipaddress { 192.168.1.203 192.168.1.204#这可以增加多个VIP }}##################第二部分###################virtual_server 192.168.1.203 3306 { delay_loop 6 lb_algo wrr lb_kind DR nat_mask 255.255.255.0 persistence_timeout 50 protocol TCPreal_server 192.168.1.231 3306 { weight 1 notify_down /root/mysql_down.sh TCP_CHECK { connect_timeout 10 nb_get_retry 3 connect_port 3306 } }}
2、mysql-master:192.168.1.232的配置
shell>vim /etc/keepalived/keepalived.conf
配置如下:
global_defs { router_id mysql-master #修改为自己的主机名 notification_email { mengtao10@163.com #接收邮件,可以有多个,一行一个} #当主、备份设备发生改变时,通过邮件通知 notification_email_from lzyangel@126.com #发送邮箱服务器 smtp_server stmp.163.com #发送邮箱超时时间 smtp_connect_timeout 30 }##################第一部分###################vrrp_instance VI_1 { state BACKUP#都修改成BACKUP interface eth0#绑定的网卡 virtual_router_id 60 #默认51 主从都修改为60 priority 80 #优先级,在mysql-master上LVS上修改成100 advert_int 1 authentication { # 认证方式,可以是PASS或AH两种认证方式 auth_type PASS # 认证密码 auth_pass 1111 }virtual_ipaddress { 192.168.1.203 192.168.1.204#这可以增加多个VIP }}##################第二部分###################virtual_server 192.168.1.203 3306 { delay_loop 6 lb_algo wrr lb_kind DR nat_mask 255.255.255.0 persistence_timeout 50 protocol TCPreal_server 192.168.1.232 3306 { weight 1 notify_down /root/mysql_down.sh TCP_CHECK { connect_timeout 10 nb_get_retry 3 connect_port 3306 } }}
3、myslq_down.sh配置,两台机都要配置这一步!!!
这里需要注意的是,notify_down /root/mysql_down.sh这个选项,这个是是在keepalived检测不到mysql的时候要执行的脚本,从上面的配置文件来看real服务器只有本机。那么,keeaplived如果启动,客户端也只是访问本机的mysql。nopreempt这个选下也得注意,这个是不抢占资源在优先级高的机器上配置就可以。
看下这个脚本的内容:
# vim /root/mysql_down.sh#!/bin/bashpkill keepalived# chmod +x /root/mysql_down.sh #授权可执行权限
脚本内容就一条命令:pkill keepalived,主要作用是如果本机的mysql挂掉了,那么同时会杀死本机的keepalived,这样另外一台就会接替他工作,虚拟IP也会被另一台接管,如果不杀死keepalived虚拟IP不会被另一台接管,mysql访问也就不会切换过去。
注意:必须要先启动MYSQL,再启动keepalived,否则keepalived启动后会运行mysql_down.sh脚本,等于自杀。
4、mysql-master(231)启动后查看IP的绑定情况,如下:
shell> ip a1: lo: <loopback> mtu 16436 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host valid_lft forever preferred_lft forever2: eth0: <broadcast> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 08:00:27:cc:92:22 brd ff:ff:ff:ff:ff:ff inet 192.168.1.232/24 brd 192.168.1.255 scope global eth0 inet 192.168.1.203/32 scope global eth0 inet 192.168.1.204/32 scope global eth0 inet6 fe80::a00:27ff:fecc:9222/64 scope link valid_lft forever preferred_lft forever</broadcast></loopback>
五、测试
1、231、232两台机同时启动MYSQL及Keepalived.
通过win cmd 命令行的客户端(或程序)连接VIP:192.168.1.203或204,如下:
C:/Users/Duncan>mysql -h192.168.1.203 -usunney -psunneyWelcome to the MySQL monitor.Commands end with ; or /g.Your MySQL connection id is 1440Server version: 5.5.37-log MySQL Community Server (GPL)Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mysql|| performance_schema || sunney || test |+--------------------+5 rows in set (0.04 sec)mysql>
注意:这时存储的数据库是mysql-master(192.168.1.231)因为他是主库。配置 priority 100 优先级高。
2、mysql-slave(232)的机同时关闭MYSQL及Keepalived.这时关闭上以上的是一样的。因为他没有走这个库。
3、mysql-master(231)同时关闭MYSQL及Keepalived,mysql-slave(232)同时启动MYSQL及Keepalived
切换很快,大概在2到3秒之间!
通过win cmd 命令行的客户端(或程序)连接VIP:192.168.1.203或204,如下:
C:/Users/Duncan>mysql -h192.168.1.203 -usunney -psunneyWelcome to the MySQL monitor.Commands end with ; or /g.Your MySQL connection id is 1440Server version: 5.5.37-log MySQL Community Server (GPL)Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mysql|| performance_schema || sunney || test |+--------------------+5 rows in set (0.04 sec)mysql>
成功!

CentOS上搭建Web服务器的安全审计与事件日志管理概述随着互联网的发展,Web服务器的安全审计和事件日志管理变得越来越重要。在CentOS操作系统上搭建Web服务器后,我们需要关注服务器的安全性并保护服务器免受恶意攻击。本文将介绍如何进行安全审计和事件日志管理,并提供相关代码示例。安全审计安全审计是指对服务器的安全状态进行全面的监控和检查,及时发现潜在的

最佳实践:CentOS搭建web服务器的性能调优指南摘要:本文旨在为CentOS搭建web服务器的用户提供一些性能调优的最佳实践,旨在提升服务器的性能和响应速度。将介绍一些关键的调优参数和常用的优化方法,并提供了一些示例代码帮助读者更好地理解和应用这些方法。一、关闭不必要的服务在CentOS搭建web服务器时,默认会启动一些不必要的服务,这些服务会占用系统资

CentOS搭建web服务器前需注意的权限与访问控制策略在搭建web服务器的过程中,权限与访问控制策略是非常重要的一环。正确设置权限和访问控制策略可以保护服务器的安全性,防止非授权用户访问敏感数据或者对服务器进行不当操作。本文将介绍在CentOS系统下搭建web服务器时需要注意的权限与访问控制策略,并提供相应的代码示例。用户与组的管理首先,我们需要创建一个专

五种web服务器是:1、IIS,是允许在公共Intranet或Internet上发布信息的Web服务器;2、Apache,是Apache软件基金会的一个开放源码的网页服务器;3、WebSphere Application Server,是一种Web应用程序服务器;4、Tomcat,是基于Java的Web应用软件容器;5、Lighttpsd,是一个开源Web服务器软件。

Swoole是一个基于PHP的开源高性能网络通信框架,它提供了TCP/UDP服务器和客户端的实现,以及多种异步IO、协程等高级特性。随着Swoole日益流行,许多人开始关心Web服务器使用Swoole的问题。为什么当前的Web服务器(如Apache、Nginx、OpenLiteSpeed等)不使用Swoole呢?让我们探讨一下这个问题。

入门级教程:在CentOS上搭建web服务器的快速指南引言:在当今互联网时代,搭建自己的web服务器已经成为许多人的需求。本文将为大家介绍如何在CentOS操作系统上搭建web服务器,并提供代码示例帮助读者快速实现。第一步:安装和配置Apache打开终端,通过以下命令安装Apache服务器:sudoyuminstallhttpd安装完成后,启动Apac

Go语言已经成为了一种流行的开发语言,特别是在网络编程方面。Go语言编写Web服务器时,有许多最佳实践来确保服务器的安全性、可维护性和可扩展性。以下是一些建议和实践,可以帮助你提高你的Go语言Web服务器的效率和可靠性。使用标准库Go语言标准库中有很多相关于网络编程的包。例如,net/http包可以帮助你编写HTTP服务器,net包可以帮助处理底层网络连接,

一、简介我们将分为以下几个部分来展开本文的内容:二、Web服务器基础概念Web服务器:负责处理客户端的HTTP请求并返回响应的程序。HTTP请求:客户端(如浏览器)向服务器发送的请求,包括请求方法、URL、请求头等信息。HTTP响应:服务器返回给客户端的数据,包括状态码、响应头和响应体等信息。三、Python网络编程库socket库:Python的标准库之一,提供了底层的网络通信功能,包括创建套接字、绑定地址、监听端口等操作。http.server库:Python的标准库之一,提供了一个基本的H


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
