基于云端虚拟机的LVS/DR+Keepalived+nginx的高可用集群架构配置(更新nginx代理功能)

简介:

       基于云端虚拟机的LVS/DR+Keepalived+nginx的高可用集群架构配置

    最近,公司要我部署一个集群架构,选来选取还是选择了大家都很熟悉的基于DR的LVS+Keepalived做负载分发,然后使用轻量级的nginx做中间代理层,这里呢先暂时实现一个简单web应用功能,对于代理功能和后续的web层部署、数据层安排将择机更新!


     首先看一下集群框架:wKiom1R9pDCBdH6DAAFs7SXE3aQ326.jpg      下面开始我们的集群搭建行程:

一、IP规划:

   做一件事情需要想想怎么去做既简单又有条理,我们做项目也应该如此。所以这里一定先做一个简单的规划,对于你后续测试的时候出现不能分发的情况有所解决。

               负载均衡层                代理层                    WEB层(待定)

           LVS1:10.124.20.248       nginx1:10.124.20.250        web1 10.124.20.240 

                                                                 web2 10.124.20.241

                                     nginx2:10.124.20.251        web3 10.124.20.242

                                                                 web4 10.124.20.243

           LVS2:10.124.20.249       nginx3:10.124.20.252        web5 10.124.20.244 

     VIP:10.124.20.20   对应绑定的外网IP:117.78.3.253          web6 10.124.20.245


  备注:在云端虚拟机做架构,比在自己本地虚拟机做实验,要略有不同。初次接触云端虚拟机的同学可能有点犯迷糊,不知道这个ip地址是怎么分配的,怎么去管理。我的老师教给一个最能解决问题的办法:在任何服务之前,首先要了解整个网络环境,然后根据环境部署服务,更改配置、规则等。关于云端虚拟机,它在整个硬件防火墙和整个路由器封闭起来的一个大的局域网集群(这里为了好理解我们姑且认为云端就一个防火墙和一个路由器)。在这个集群中,又有很多网段的局域网,每个企业在申请虚拟机的时候一般会建立一个虚拟机组,这个机组则对应着一个网段。

   这里使用的网段是10.124.20.0/24,给各台服务器分配唯一的IP地址。这里要特别说明一下,华为云技术人员建议使用的服务器固定ip在32-254之间,在2-31之间的IP地址作为候补之用,比如说VIP就选用这里面,还有临时加虚拟机的话也可以选用。所以对于IP地址的规划是很重要的。另外说一下,这也是在生产环境中的经验吧,VIP必须是和集群IP地址在一个网段,还要必须有别于集群IP地址,另外要提供网站访问服务或者测试,则需要将内网的VIP与一个公网IP进行绑定,在外部网络浏览器访问外网IP就会直接映射到内网VIP上,然后就会实现我们所熟悉的功能,VIP漂移,LVS分发。小技巧:公网IP与单纯的一个内网ip做绑定是不成功的,所以先把需要绑定公网IP的内网IP绑定到一个虚拟机上,然后再进行绑定,绑定完之后再进行更改IP地址。(比如说我要使用10.124.20.20做VIP,首先我把10.124.20.20绑定到一台虚拟机上,通过后台将外网IP117.78.3.25310.124.20.20绑定,也就是做映射,最后再将10.124.20.20与虚拟解绑,这样就实现了预期目的


二、源码安装&&配置

 1.LVS+Keepalived搭建 

 1)LVS1:10.124.20.248&&LVS2:10.124.20.249

    cd /usr/local/src/

    wget http://down1.chinaunix.net/distfiles/ipvsadm-1.24.tar.gz

    wget http://www.keepalived.org/software/keepalived-1.1.20.tar.gz

    tar xf ipvsadm-1.24.tar.gz

    tar xf keepalived-1.1.20.tar.gz

  ipvsadm编译安装

    ln -s /usr/src/kernels/2.6.32-279.el6.x86_64/ /usr/src/linux  #创建软连接

    cd /usr/local/src/ipvsadm-1.24

    make && make install

    #/sbin/ipvsadm -v  #检测ipvsadm是否安装成功(或者:#watch ipvsadm –ln)

       ipvsadm v1.24 2005/12/10 (compiled with getopt_long and IPVS v1.2.1)

  Keepalived编译安装

    /usr/local/src/keepalived-1.1.20

    ./configure --prefix=/usr/local/keepalived --with-kernel-dir=/usr/src/kernels/2.6.32-279.el6.x86_64

 返回信息:

          Keepalived configuration

          ------------------------

          Keepalived version       : 1.1.20

          Compiler                 : gcc

          Compiler flags           : -g -O2

          Extra Lib                : -lpopt -lssl -lcrypto 

          Use IPVS Framework       : Yes

          IPVS sync daemon support : Yes

          Use VRRP Framework       : Yes

          Use Debug flags          : No

    make && make install

      返回信息:

        install -d /usr/local/keepalived/bin

        install -m 755 ../bin/genhash /usr/local/keepalived/bin/

        install -d /usr/local/keepalived/share/man/man1

        install -m 644 ../doc/man/man1/genhash.1 /usr/local/keepalived/share/man/man1

    将Keepalived做成服务:

    cd /usr/local/keepalived/

    cp etc/rc.d/init.d/keepalived /etc/rc.d/init.d/

    cp etc/sysconfig/keepalived /etc/sysconfig/

    mkdir /etc/keepalived

    cp etc/keepalived/keepalived.conf /etc/keepalived/

    cp sbin/keepalived /usr/sbin/ 

 将keepalived设置成开机自启动服务

   chkconfig --add  keepalived

   chkconfig keepalived on

      

 

  2) 修改Keepalived.conf配置文件    

      #cat /etc/keepalived/keepalived.conf  #主LVS1:10.124.20.248

      ! Configuration File for keepalived

      global_defs {

          notification_email {

                 qingbo.song@apicloud.com

           }

          notification_email_from qingbo.song@apicloud.com

          smtp_server 127.0.0.1

          # smtp_connect_timeout 30

          router_id LVS_DEVEL         

      }

       

      vrrp_sync_group VGM {    

          group {

                 VI_1 

                }

       

      notify_master "/opt/shell/arp.sh"

      notify_backup "/opt/shell/arp.sh"

      }

      vrrp_script chk_nginx {   

      script "/opt/shell/check_nginx.sh"

      interval 1

      weight -2

      }

      vrrp_script chk_nginx2 {     

      script "/opt/shell/check_nginx2.sh"

      interval 1

      weight -2

      }

      vrrp_script chk_nginx3 {     

      script "/opt/shell/check_nginx3.sh"

      interval 1

      weight -2

      }

      vrrp_instance VI_1 {       

          state MASTER  

          interface eth0      

          virtual_router_id 51 

          priority 100   

          advert_int 1     

          authentication {    

               auth_type PASS

               auth_pass yzkjTest

           }

      track_script {   

      chk_nginx

      chk_nginx2

      chk_nginx3

      }

      virtual_ipaddress {

          10.124.20.20   

          }

      }

      virtual_server 10.124.20.20 80 {   

          delay_loop 5

          lb_algo sh

          lb_kind DR 

          persistence_timeout 60

          protocol TCP 

      real_server 10.124.20.250 80 {    

          weight 1    

          TCP_CHECK {

             connect_timeout 10   

             nb_get_retry 3

             delay_before_retry 3   

             connect_port 80

                   }

      }

       

      real_server 10.124.20.251 80 { 

         weight 1

         TCP_CHECK {

            connect_timeout 10

            nb_get_retry 3

            delay_before_retry 3

            connect_port 80

                  }

      }

      

      real_server 10.124.20.252 80 { 

         weight 1

         TCP_CHECK {

            connect_timeout 10

            nb_get_retry 3

            delay_before_retry 3

            connect_port 80

                  }

           }

      }




      #cat /etc/keepalived/keepalived.conf  #备LVS1:10.124.20.249

      ! Configuration File for keepalived

      global_defs {

          notification_email {

                 qingbo.song@apicloud.com

           }

          notification_email_from qingbo.song@apicloud.com

          smtp_server 127.0.0.1

          # smtp_connect_timeout 30

          router_id LVS_DEVEL         

      }

       

      vrrp_sync_group VGM {    

          group {

                 VI_1 

                }

       

      notify_master "/opt/shell/arp.sh"

      notify_backup "/opt/shell/arp.sh"

      }

      vrrp_script chk_nginx {   

      script "/opt/shell/check_nginx.sh"

      interval 1

      weight -2

      }

      vrrp_script chk_nginx2 {     

      script "/opt/shell/check_nginx2.sh"

      interval 1

      weight -2

      }

      vrrp_script chk_nginx3 {     

      script "/opt/shell/check_nginx3.sh"

      interval 1

      weight -2

      }

      vrrp_instance VI_1 {       

          state BACKUP

          interface eth0      

          virtual_router_id 51 

          priority 99   

          advert_int 1     

          authentication {    

               auth_type PASS

               auth_pass yzkjTest

           }

      track_script {   

      chk_nginx

      chk_nginx2

      chk_nginx3

      }

      virtual_ipaddress {

          10.124.20.20   

          }

      }

      virtual_server 10.124.20.20 80 {   

          delay_loop 5

          lb_algo sh

          lb_kind DR 

          persistence_timeout 60

          protocol TCP 

      real_server 10.124.20.250 80 {    

          weight 1    

          TCP_CHECK {

             connect_timeout 10   

             nb_get_retry 3

             delay_before_retry 3   

             connect_port 80

                   }

      }

       

      real_server 10.124.20.251 80 { 

         weight 1

         TCP_CHECK {

            connect_timeout 10

            nb_get_retry 3

            delay_before_retry 3

            connect_port 80

                  }

      }

      

      real_server 10.124.20.252 80 { 

         weight 1

         TCP_CHECK {

            connect_timeout 10

            nb_get_retry 3

            delay_before_retry 3

            connect_port 80

                  }

           }

      }

==============================================================

  相关检测脚本:

  #cat /opt/shell/arp.sh 

  #!/bin/bash

  VIP=10.124.20.20

  GATEWAY=10.124.20.1

  /sbin/arping -I eth0 -c 5 -s $VIP $GATEWAY &>/dev/null

  

  #cat /opt/shell/check_nginx.sh 

  !/bin/bash

  url="http://10.124.20.250"   

  status=$(/usr/bin/curl -s --head "$url" | awk '/HTTP/ {print $2}')

  if [ "$status" != "200" ]; then

  /opt/shell/arp.sh start

  fi

  

  #cat /opt/shell/check_nginx2.sh 

  !/bin/bash

  url="http://10.124.20.251"   

  status=$(/usr/bin/curl -s --head "$url" | awk '/HTTP/ {print $2}')

  if [ "$status" != "200" ]; then

  /opt/shell/arp.sh start

  fi

  

  #cat /opt/shell/check_nginx3.sh 

  !/bin/bash

  url="http://10.124.20.252"   

  status=$(/usr/bin/curl -s --head "$url" | awk '/HTTP/ {print $2}')

  if [ "$status" != "200" ]; then

  /opt/shell/arp.sh start

  fi

===============================================================

 3)Keepalived服务启动(ifconfig eth0:1 10.124.20.248 netmask 255.255.255.255 up)

  service keepalived start #服务启动

  #ps -aux|grep keepalived #检测服务启动状态

(/usr/local/keepalived/sbin/keepalived -D -f /etc/keepalived/keepalived.conf -D 显示在日志记录  -f 指定配置文件目录)

  Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ

  root     21205  0.0  0.0  36776   732 ?        Ss   17:06   0:00 keepalived -D

  root     21207  0.0  0.1  38880  1936 ?        S    17:06   0:00 keepalived -D

  root     21208  0.0  0.1  38880  1232 ?        S    17:06   0:00 keepalived -D

  root     21301  0.0  0.0 103240   840 pts/0    S+   17:07   0:00 grep keepalived

 4)#设置开机启动服务

  (##echo “/usr/local/keepalived/sbin/keepalived -D -f /etc/keepalived/keepalived.conf” >> /etc/rc.d/rc.local)

 chkconfig --add  keepalived

 chkconfig keepalived on

service iptables stop

 5)添加防火墙规则:

 iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT   #使80端口提供对外服务

 iptables -A INPUT -d 224.0.0.0/8 -j ACCEPT

 iptables -A INPUT -p vrrp -j ACCEPT #基于DR模式,当用户发出请求后,只有DR响应ARP广播包,允许vrrp虚拟路由器冗余协议

 /etc/rc.d/init.d/iptables save #保存规则到iptables文件,使重启后生效)

 6)开启转发功能;

  #vim /etc/sysctl.conf 

  net.ipv4.ip_forward = 1

  #sysctl -p  #使转发能够生效

三、nginx服务器的搭建

 

1)安装pcre-8.36.tar.gz

  cd /usr/local/src

  tar xf pcre-8.36.tar.gz

  cd pcre-8.36

  ./configure --prefix=/usr/local/pcre

  make && make install

 2)安装nginx-1.5.1.tar.gz

  cd /usr/local/src

  tar xf nginx-1.5.1.tar.gz

  cd nginx-1.5.1

  ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --with-pcre=/usr/local/src/pcre-8.36 --with-openssl=/usr/local/src/openssl-1.0.0c //这里跟的目录是源码目录,而不是源码安装后的目录

  make && make install

 3)启动

 编写启动脚本:

===============================================================

 vim /etc/init.d/nginx      | chmod +x /etc/init.d/nginx

      #!/bin/sh

      #

      # nginx - this script starts and stops the nginx daemin

      #

      # chkconfig:   - 85 15

      # description:  Nginx is an HTTP(S) server, HTTP(S) reverse \

      #               proxy and IMAP/POP3 proxy server

      # processname: nginx

      # config:      /usr/local/nginx/conf/nginx.conf

      # pidfile:     /usr/local/nginx/logs/nginx.pid

      # Source function library.

      . /etc/rc.d/init.d/functions

      # Source networking configuration.

      . /etc/sysconfig/network

      # Check that networking is up.

      [ "$NETWORKING" = "no" ] && exit 0

      nginx="/usr/local/nginx/sbin/nginx"

      prog=$(basename $nginx)

      NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"

      lockfile=/var/lock/subsys/nginx

      start() {

          [ -x $nginx ] || exit 5

          [ -f $NGINX_CONF_FILE ] || exit 6

          echo -n $"Starting $prog: "

          daemon $nginx -c $NGINX_CONF_FILE

          retval=$?

          echo

          [ $retval -eq 0 ] && touch $lockfile

          return $retval

      }

      stop() {

          echo -n $"Stopping $prog: "

          killproc $prog -QUIT

          retval=$?

          echo

          [ $retval -eq 0 ] && rm -f $lockfile

          return $retval

      }

      restart() {

          configtest || return $?

          stop

          start

      }

      reload() {

          configtest || return $?

          echo -n $"Reloading $prog: "

          killproc $nginx -HUP

          RETVAL=$?

          echo

      }

      force_reload() {

          restart

      }

      configtest() {

        $nginx -t -c $NGINX_CONF_FILE

      }

      rh_status() {

          status $prog

      }

      rh_status_q() {

          rh_status >/dev/null 2>&1

      }

      case "$1" in

          start)

              rh_status_q && exit 0

              $1

              ;;

          stop)

              rh_status_q || exit 0

              $1

              ;;

          restart|configtest)

              $1

              ;;

          reload)

              rh_status_q || exit 7

              $1

              ;;

          force-reload)

              force_reload

              ;;

          status)

              rh_status

              ;;

          condrestart|try-restart)

              rh_status_q || exit 0

                  ;;

          *)

              echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"

              exit 2

      esac

======================================================================  

 service nginx start 启动服务

 4)RS配置脚本

======================================================================

      #cat /opt/RS.sh 

      #!/bin/bash

      #

      # Script to start LVS DR real server.

      # description: LVS DR real server

      #

      .  /etc/rc.d/init.d/functions

      

      VIP=10.124.20.20

      host=`/bin/hostname`

      

      case "$1" in

      start)

             # Start LVS-DR real server on this machine.

              /sbin/ifconfig lo down

              /sbin/ifconfig lo up

              echo 1 > /proc/sys/net/ipv4/conf/lo/arp_ignore

              echo 2 > /proc/sys/net/ipv4/conf/lo/arp_announce

              echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore

              echo 2 > /proc/sys/net/ipv4/conf/all/arp_announce

      

              /sbin/ifconfig lo:0 $VIP broadcast $VIP netmask 255.255.255.255 up

              /sbin/route add -host $VIP dev lo:0

              echo "RealServer Start OK"

      

      ;;

      stop)

      

              # Stop LVS-DR real server loopback device(s).

              /sbin/ifconfig lo:0 down

              echo 0 > /proc/sys/net/ipv4/conf/lo/arp_ignore

              echo 0 > /proc/sys/net/ipv4/conf/lo/arp_announce

              echo 0 > /proc/sys/net/ipv4/conf/all/arp_ignore

              echo 0 > /proc/sys/net/ipv4/conf/all/arp_announce

              echo "RealServer Stoped OK"

      ;;

      status)

      

              # Status of LVS-DR real server.

              islothere=`/sbin/ifconfig lo:0 | grep $VIP`

              isrothere=`netstat -rn | grep "lo:0" | grep $VIP`

              if [ ! "$islothere" -o ! "isrothere" ];then

                  # Either the route or the lo:0 device

                  # not found.

                  echo "LVS-DR real server Stopped."

              else

                  echo "LVS-DR real server Running."

              fi

      ;;

      *)

                  # Invalid entry.

                  echo "$0: Usage: $0 {start|status|stop}"

                  exit 1

      ;;

      esac

===================================================================

 启动RS配置:

  sh /opt/RS.sh start

5)配置ngin.conf文件,开启反向代理功能(三台代理服务器,需要修改的就是需要web服务器的IP地址)

  #nginx1:10.124.20.250 

   vim /usr/local/nginx/conf/nginx.conf       

===================================================================

worker_processes  1;   

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    upstream YZKJ1 {  #定义一个代理服务群组

        ip_hash;

        server 10.124.20.240 weight=1;

        server 10.124.20.241 weight=1;

    }

    server {

        listen       80;

        server_name  localhost;

        location / {

             proxy_pass http://YZKJ1;  #开启代理服务,直接执行代理服务群组

         }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

}

==================================================================

  #nginx1:10.124.20.251

===================================================================

worker_processes  1;   

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    upstream YZKJ2 {  #定义一个代理服务群组

        ip_hash;

        server 10.124.20.242 weight=1;

        server 10.124.20.243 weight=1;

    }

    server {

        listen       80;

        server_name  localhost;

        location / {

             proxy_pass http://YZKJ2;  #开启代理服务,直接执行代理服务群组

         }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

}

==================================================================

#nginx1:10.124.20.251

===================================================================

worker_processes  1;   

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    upstream YZKJ3 {  #定义一个代理服务群组

        ip_hash;

        server 10.124.20.244 weight=1;

        server 10.124.20.245 weight=1;

        server 10.124.20.246 weight=1;

    }

    server {

        listen       80;

        server_name  localhost;

        location / {

             proxy_pass http://YZKJ3;  #开启代理服务,直接执行代理服务群组

         }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

}

==================================================================

四、web层服务器:

 这里使用的是nginx提供的web服务功能,所以,安装步骤请参考第三部分RS的配置

 如果使用Apache提供的文本服务,安装流程请见下文:

=======================================================================

Apache源码编译安装流程:(http-2.4.10.tar.gz)

 cd /usr/local/src/

 #依赖包安装

 *apr*

   tar xf apr-1.4.6.tar.gz

   cd apr-1.4.6

   ./configure --prefix=/usr/local/apr

   make && make install

 *apr-util*

   tar xf apr-util-1.4.1.tar.gz 

   cd apr-util-1.4.1

   ./configure --prefix=/usr/lcoal/apr-util --with-apr=/usr/local/apr

   make && make intsall

 *pcre*

   tar xf pcre-8.36.tar.gz 

   cd pcre-8.36 

   ./configure --prefix=/usr/local/pcre

   make

   make check

   make install

 #Apache安装

   tar xf httpd-2.4.10.tar.gz

   cd httpd-2.4.10

   ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --enable-module=so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-cache --enable-file-cache --enable-men-cache --enable-disk-cache --enable-static-support --enable-static-ab --disable-userdir --with-mpm=prefork --enable-nonportable-atomics --disable-ipv6 --with-senfile

   make && make install

 #Apache启动

 /usr/local/src/apache/bin/apachectl start

 ======================================================================================

五、测试

  浏览器访问测试117.78.3.253,能够返回想要的信息即为成功!

六、总结

  使用LVS+Keepalived做负载均衡,首先先将内部各个服务器的iptables与selinux关闭,确保内部网络通畅,一般而言,将上述防火墙关闭之后,安装上述配置文件提供的参数进行配置,是能够实现预期功能的。我的文档中可能提到过要设置iptables规则,这个要在测试通过之后,再打开iptables,然后写上防火墙规则。通过查阅很多资料,看到很多人都在防火墙关闭的情况实验成功,看来防火墙与LVS的分发功能是多少有点冲突,对于这方面的知识学习,有待于我们在今后的工作和学习中进行探索,我也将对后续知识在被人博客上做介绍,希望以后能在这个平台与大家一起交流、学习、成长!

       

                                                                   qingbo.song@apicloud.com

                                                                        2014-12-02

                                                                        2014-12-05更新

  

更新:防火墙设置:

修改防火墙

    -A INPUT -p vrrp -j ACCEPT #基于DR模式,当用户发出请求后,只有DR响应ARP广播包,允许vrrp虚拟路由器冗余协议

    重启防火墙:service iptables restart

                                                                          2015.11.24更新 










本文转自 南非波波 51CTO博客,原文链接:http://blog.51cto.com/nanfeibobo/1585684,如需转载请自行联系原作者
目录
相关文章
|
3月前
|
负载均衡 网络协议 应用服务中间件
【Nginx】Nginx 功能特性
【1月更文挑战第25天】【Nginx】Nginx 功能特性
|
3月前
|
机器学习/深度学习 NoSQL Redis
Redis高可用之集群架构(第三部分)
Redis高可用之集群架构(第三部分)
|
3月前
|
弹性计算 容器
ACK集群高弹性架构
ACK集群高弹性架构
35 0
|
1月前
|
存储 监控 NoSQL
Redis 架构深入:主从复制、哨兵到集群
大家好,我是小康,今天我们来聊下 Redis 的几种架构模式,包括主从复制、哨兵和集群模式。
Redis 架构深入:主从复制、哨兵到集群
|
1月前
|
分布式计算 API 数据处理
Flink【基础知识 01】(简介+核心架构+分层API+集群架构+应用场景+特点优势)(一篇即可大概了解flink)
【2月更文挑战第15天】Flink【基础知识 01】(简介+核心架构+分层API+集群架构+应用场景+特点优势)(一篇即可大概了解flink)
56 1
|
2月前
|
网络协议 中间件 数据库
Zookeeper学习系列【三】Zookeeper 集群架构、读写机制以及一致性原理(ZAB协议)
Zookeeper学习系列【三】Zookeeper 集群架构、读写机制以及一致性原理(ZAB协议)
92 0
|
3月前
|
存储 弹性计算 运维
ACK集群高弹性架构有哪些优缺点
ACK集群高弹性架构有哪些优缺点
39 0
|
3月前
|
缓存 负载均衡 应用服务中间件
【分布式技术专题】「分析Web服务器架构」Tomcat服务器的运行架构和LVS负载均衡的运行机制(修订版)
在本章内容中,我们将深入探讨 Tomcat 服务器的运行架构、LVS 负载均衡的运行机制以及 Cache 缓存机制,并提供相应的解决方案和指导。通过理解这些关键概念和机制,您将能够优化您的系统架构,提高性能和可扩展性。
205 4
【分布式技术专题】「分析Web服务器架构」Tomcat服务器的运行架构和LVS负载均衡的运行机制(修订版)
|
2月前
|
虚拟化
vmware克隆虚拟机后没有ip地址的问题
解决vmware克隆虚拟机后没有内网ip的问题
|
3月前
|
SQL 存储 数据挖掘
【虚拟机数据恢复】VMware虚拟机文件被误删除的数据恢复案例
虚拟机数据恢复环境: 某品牌R710服务器+MD3200存储,上层是ESXI虚拟机和虚拟机文件,虚拟机中存放有SQL Server数据库。 虚拟机故障: 机房非正常断电导致虚拟机无法启动。服务器管理员检查后发现虚拟机配置文件丢失,所幸xxx-flat.vmdk磁盘文件和xxx-000001-delta.vmdk快照文件还在。服务器管理员在尝试恢复虚拟机的过程中,将原虚拟机内的xxx-flat.vmdk删除后新建了一个虚拟机,并分配了精简模式的虚拟机磁盘和快照数据盘,但原虚拟机内的数据并没有恢复。
【虚拟机数据恢复】VMware虚拟机文件被误删除的数据恢复案例