最近对负载均衡进行搭建具体方法如下:
- haproxy 修改部分(haproxy-cfg.cfg)
global daemon maxconn 4500 defaults mode http timeout connect 5000ms timeout client 50000ms timeout server 180000ms stats enable stats uri /stats stats auth admin:linkage!^* frontend http-in bind *:9090 default_backend dynamic_servers backend dynamic_servers mode http option httpclose option forwardfor header X-Forwarded-For appsession JSESSIONID len 52 timeout 30m balance roundrobin server server_9091 218.9.70.6:9091 maxconn 250 server server_9092 218.9.70.6:9092 maxconn 250 server server_9093 218.9.70.6:9093 maxconn 250 server server_9094 218.9.70.6:9094 maxconn 250 server server_9095 218.9.70.6:9095 maxconn 250
使用haproxy做端口转发,只需要修改tomcat的 到不同的端口(保证端口不被占用)
在haproxy映射即可。
启动方法 ./haproxy -f haproxy-cfg.cfg
haproxy 有编译好的版本,也可以自行编译参考方法
http://wenku.baidu.com/view/0a7a28154431b90d6c85c760.html
tomcat示例
<!-- Note: A "Server" is not itself a "Container", so you may not define subcomponents such as "Valves" at this level. Documentation at /docs/config/server.html --> <Server port="9005" shutdown="SHUTDOWN"> <!--APR library loader. Documentation at /docs/apr.html --> <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html --> <Listener className="org.apache.catalina.core.JasperListener" /> <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html --> <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" /> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> <!-- Global JNDI resources Documentation at /docs/jndi-resources-howto.html --> <GlobalNamingResources> <!-- Editable user database that can also be used by UserDatabaseRealm to authenticate users --> <Resource name="UserDatabase" auth="Container" type="org.apache.catalina.UserDatabase" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" pathname="conf/tomcat-users.xml" /> </GlobalNamingResources> <!-- A "Service" is a collection of one or more "Connectors" that share a single "Container" Note: A "Service" is not itself a "Container", so you may not define subcomponents such as "Valves" at this level. Documentation at /docs/config/service.html --> <Service name="Catalina"> <!--The connectors can use a shared executor, you can define one or more named thread pools--> <!-- <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" maxThreads="150" minSpareThreads="4"/> --> <!-- A "Connector" represents an endpoint by which requests are received and responses are returned. Documentation at : Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) Java AJP Connector: /docs/config/ajp.html APR (HTTP/AJP) Connector: /docs/apr.html Define a non-SSL HTTP/1.1 Connector on port 8080 --> <Connector port="9091" protocol="HTTP/1.1" connectionTimeout="100000" redirectPort="8443" URIEncoding="gbk"/> <!-- A "Connector" using the shared thread pool--> <!-- <Connector executor="tomcatThreadPool" port="8081" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> --> <!-- Define a SSL HTTP/1.1 Connector on port 8443 This connector uses the JSSE configuration, when using APR, the connector should be using the OpenSSL style configuration described in the APR documentation --> <!-- <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" /> --> .....
相关推荐
Mariadb+Haproxy负载均衡集群搭建 Mariadb 是一个开源的关系数据库管理系统,它是 MySQL 的一个分支,具有高性能、可靠性和可扩展性等特点。Galera 是一个 MySQL(也支持 MariaDB、Percona)的同步多主集群软件,...
用haproxy实现RDP会话负载均衡 HAProxy是一款免费、快速、可靠的解决方案,提供高可用性、负载均衡和基于TCP和HTTP应用的代理。它支持虚拟主机,运行在当前的硬件上,可以支持数以万计的并发连接。HAProxy特别适用...
Galera是一个MySQL(也支持MariaDB,Percona)的同步多主集群软件,目前只支持InnoDB引擎。 主要功能: • 同步复制 • 真正的multi-master,即所有节点可以同时读写数据库 • 自动的节点成员控制,失效节点自动被...
【HAProxy负载均衡详解】 HAProxy是一款开源的高性能、高可用的负载均衡器,常用于HTTP、HTTPS和TCP应用的负载均衡。它可以根据多种策略将客户端的请求分发到后端服务器,确保服务的高可用性和性能。在本场景中,...
这是一个PPT,主要讲解在liunx服务器搭建一下haproxy应用实现负载均衡功能。
通过上述步骤,你就成功地在Red Hat 5.8环境中搭建了一个基于HAproxy+Keepalived的负载均衡架构。这个架构可以有效地分散负载,提升服务的可用性和稳定性,对于任何需要高可用性的Web服务来说,都是一个理想的解决...
redhat 6.4(64位)下HAproxy+Keepalived 负载均衡架构搭建.docx
本文将对 Web 负载均衡解决方案进行详细介绍,该解决方案基于 HAproxy 和 keepalived 实现高可用负载均衡。HAProxy 是一种提供高可用性、负载均衡以及基于 TCP 和 HTTP 应用的代理,可以支持虚拟主机,免费、快速...
redhat6.4(64位)下HAproxy+Keepalived负载均衡架构搭建.pdf
【MySQL高可用+负载均衡集群】的搭建方案通常涉及到多个组件,如haproxy和keepalived,旨在提升系统的稳定性和处理能力。MySQL在面对大量用户和数据增长时,单个实例可能会达到性能瓶颈,此时就需要引入高可用和负载...
Haproxy作为一个强大的负载均衡器,可以将流量分发到多个后端服务器,而Mycat则是一个数据库中间件,用于实现数据的分布式处理。本指南将详细介绍如何在特定环境下搭建Haproxy+Mycat集群。 1. **环境描述** - ...
【标题】:“管理系统系列--主从HAProxy负载均衡任务管理系统”这一主题主要涵盖了在IT行业中如何利用HAProxy技术实现高可用性和负载均衡的系统设计。HAProxy是一款开源的、高性能的TCP/HTTP负载均衡器,它能够有效...
基于Keepalived+Haproxy搭建四层负载均衡器
基于mysql的负载均衡有很多种方式,如haproxy,前面一篇博客有介绍,还可以用更高效lvs做负载均衡,下面是基于percona xtradb cluster的三个节点的多主复制+atlas的lvs负载均衡,其实这里是不需要用atlas的,因为...
本篇文章将深入探讨如何使用开源软件HAProxy在FinalBSD系统上搭建负载均衡架构平台。 首先,我们要了解负载均衡的基本概念。负载均衡是一种技术,用于将网络流量分散到多个服务器上,以防止单个服务器过载,提高...
本压缩包包含的是EMQTT与HAProxy的高可用性、高负载均衡和容错配置的详细资料,旨在帮助用户实现稳定的服务运行。 EMQTT,全称Erlang MQTT Broker,是一个基于Erlang/OTP构建的高性能、分布式MQTT消息代理。MQTT...
K8S环境有两种架构方式,单Master集群和多Master集群,将先搭建起单Master集群,再扩展为多Master集群。开发、测试环境可以部署单Master...本设计中主要基于开源软件HAProxy实现负载均衡并且通过Keepalived实现高可用。
在构建高可用的数据库系统中,HAproxy和Mycat常常被结合使用,以实现负载均衡和故障切换。这个文档将详细阐述如何在Oracle Linux Server release 6.3环境下搭建这样一个集群。 1. **Mycat安装** Mycat是一个开源的...