搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
菜鸟追梦旅行
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
RACV2022观点集锦 | 视觉基础模型_diffusion sampling
2
不知道AIGC是什么?近屿智能OJAC第六期AIGC深度训练营,带您从入门到精通!
3
List转JSONArray和JSONArray转List
4
PSQLException: ERROR: column “xxxxx“ does not exist_mybatis psqlexception: [] error: column "licid" do
5
大语言模型产品汇总_大语言模型 发布站
6
iOS 摸鱼周报 第四十八期
7
html标签label超出长度(文本溢出)时,不换行,而在最后边显示省略号_label 超过长度后面变成。。。
8
SpringBoot集成JWT实现Token登录验证_spring boot token验证
9
Appium安装及开发环境配置_appium安装及环境配置
10
nlp小记-Word2vce_word2vec 语料库规模
当前位置:
article
> 正文
HAProxy配置文件haproxy.cfg解释_unknown keyword ' ' in 'listen' section
作者:菜鸟追梦旅行 | 2024-03-24 15:18:00
赞
踩
unknown keyword ' ' in 'listen' section
J2EE开发爱好者
2013-05-07 13:11:12
HAProxy的配置
HAProxy配置中分成五部分内容,当然这些组件不是必选的,可以根据需要选择部分作为配置。
global:参数是进程级的,通常和操作系统(OS)相关。这些参数一般只设置一次,如果配置无误,就不需要再次配置进行修改
defaults:配置默认参数的,这些参数可以被利用配置到frontend,backend,listen组件
frontend:接收请求的前端虚拟节点,Frontend可以根据规则直接指定具体使用后端的 backend(可动态选择)。
backend:后端服务集群的配置,是真实的服务器,一个Backend对应一个或者多个实体服务器。
listen:Frontend和Backend的组合体。
下面是HAProxy的一些常用的配置,这个配置是用来说明HAProxy的一些常用功能的配置,具体详细配置请查看安装目录下的doc目录下的文档文件,或者到”
http://cn.haproxy.org/
”
下载中文配置说明文档
配置文件例子:
global
#全局的日志配置 其中日志级别是[err warning info debug]
#local0 是日志设备,必须为如下24种标准syslog设备的一种:
#kern user mail daemon auth syslog lpr news
#uucp cron auth2 ftp ntp audit alert cron2
#local0 local1 local2 local3 local4 local5 local6 local7
#但是之前在/etc/syslog.conf文件中定义的是local0所以
#这里也是用local0
log 127.0.0.1 local0 info #[err warning info debug]
#最大连接数
maxconn 4096
#用户
user admin
#组
group admin
#使HAProxy进程进入后台运行。这是推荐的运行模式
daemon
#创建4个进程进入deamon模式运行。此参数要求将运行模式设置为"daemon"
nbproc 4
#将所有进程的pid写入文件<pidfile>启动进程的用户必须有权限访问此文件。
pidfile /home/admin/haproxy/logs/haproxy.pid
defaults
#默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK
mode http
#采用http日志格式
option httplog
#三次连接失败就认为是服务器不可用,也可以通过后面设置
retries 3
#如果cookie写入了serverId而客户端不会刷新cookie,
#当serverId对应的服务器挂掉后,强制定向到其他健康的服务器
option redispatch
#当服务器负载很高的时候,自动结束掉当前队列处理比较久的链接
option abortonclose
#默认的最大连接数
maxconn 4096
#连接超时
contimeout 5000
#客户端超时
clitimeout 30000
#服务器超时
srvtimeout 30000
#=心跳检测超时
timeout check 2000
#注:一些参数值为时间,比如说timeout。时间值通常单位为毫秒(ms),但是也可以通过加#后缀,来使用其他的单位。
#- us : microseconds. 1 microsecond = 1/1000000 second
#- ms : milliseconds. 1 millisecond = 1/1000 second. This is the default.
#- s : seconds. 1s = 1000ms
#- m : minutes. 1m = 60s = 60000ms
#- h : hours. 1h = 60m = 3600s = 3600000ms
#- d : days. 1d = 24h = 1440m = 86400s = 86400000ms
########统计页面配置############
listen admin_stats
#监听端口
bind 0.0.0.0:1080
#http的7层模式
mode http
#日志设置
log 127.0.0.1 local0 err #[err warning info debug]
#统计页面自动刷新时间
stats refresh 30s
#统计页面url
stats uri /admin?stats
#统计页面密码框上提示文本
stats realm Gemini\ Haproxy
#统计页面用户名和密码设置
stats auth admin:admin
stats auth admin1:admin1
#隐藏统计页面上HAProxy的版本信息
stats hide-version
#######网站检测listen定义############
listen site_status
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/303180?site
推荐阅读
article
wamp
环境下
url
无法重写和出现提示
PHP
Warning
:
PHP
Startup
: in ...
url
无法重写检查原因第一步:检查你的 mod_rewrite_so 这个模块加载进来没有,第二步。在你的.htacce...
赞
踩
article
haproxy
的
配置
文件介绍_
haproxy
2.4
配置
...
haproxy
的基础
配置
HAPrpxy的
配置
文件
haproxy
.cfg由两大部分组成,分别是global和proxie...
赞
踩
article
Haproxy
+
Nginx
搭建
负载
均衡
集群_
haproxy
代理
nginx
...
认识
haproxy
以及
haproxy
+
nginx
的搭建_
haproxy
代理
nginx
haproxy
代理
nginx
...
赞
踩
article
Haproxy
+
nginx
搭建
web
群集_/
etc
/
haproxy
/
haproxy
.cfg hapr...
一、
haproxy
是什么?HAProxy是一个使用C语言编写的自由及开放源代码软件[1],其提供高可用性、负载均衡,以及...
赞
踩
article
HAProxy
+
Nginx
负载
均衡_
haporxy
代理
nginx
版本低
安全漏洞
...
一、什么是
HAProxy
HAProxy
提供高可用性、
负载
均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费、...
赞
踩
article
Haproxy安装和配置负载_
target
'
linux26
' was
removed
from
h...
一、实验环境实验用途IP地址操作系统
haproxy
192.168.31.61Centos7.9转发1192.168.31...
赞
踩
article
Haproxy
+
nginx
负载
均衡配置...
Haproxy
+
nginx
负载
均衡配置
Haproxy
+
nginx
负载
均衡配置 目录 引言 一、常...
赞
踩
article
HAProxy
安装和
配置
大全_/
etc
/
haproxy
/
haproxy
.
cfg
配置
pgsql
-c...
一、使用说明:
HAProxy
提供高可用性、负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费、快速并且...
赞
踩
article
HAProxy
简介及
配置文件
详解_
haproxy
.
cfg
...
HAProxy
简介官网:http://www.
haproxy
.com
HAProxy
是法国人Willy Tarreau开...
赞
踩
article
Haproxy
配置文件
_
haproxy
配置文件
详解...
haproxy
的
配置文件
大概可以分两段:第一段配置是global配置段即全局配置段,主要是针对
haproxy
的进程和安全...
赞
踩
article
HAProxy
(
1
)——
haproxy
基础
配置
(
配置
文件
详解、简单功能)_
1
)
haproxy
...
文章目录一、
HAProxy
基础介绍
1
. 概述2. 负载均衡的分类二、
haproxy
基础
配置
1
.
配置
监控一、HAProx...
赞
踩
article
HAProxy
---
HAProxy
的
haproxy
.
cfg
文件...
HAProxy
的
配置文件
haproxy
.
cfg
文件由两大部分组成。分别是global和proxies部分。global进...
赞
踩
article
HAproxy
配置
_
haproxy
.
conf
...
核心
配置
HAProxy 的
配置
文件
haproxy
.cfg由两大部分组成,分别是global和proxies部分globa...
赞
踩
article
HAProxy
配置详解_/
etc
/
haproxy
/
haproxy
.cfg...
转载:https://www.cnblogs.com/qige2017/p/7783402.html
HAProxy
HAP...
赞
踩
article
Linux
企业实战(
三十九
)——
Haproxy
(
1
)...
Haproxy
实现反向代理及负载均衡
1
、
Haproxy
介绍
Haproxy
是一个特别适用于高可用性环境的TCP/HTTP开...
赞
踩
article
haproxy
.cfg
配置
详解...
global #全局设置 log 127.0.0.1 local0 #日志输出
配置
,所有日志都记录在本机,通过l...
赞
踩
article
Haproxy
---
搭建
Web
集群部署_
hgwproxy
...
一,
Haproxy
介绍1,常见的
Web
集群调度器2,
Haproxy
应用HAProxy 是一款基于TCP和HTTP应用...
赞
踩
article
群集
--
Haproxy
搭建
Web
群集
(
Haproxy
功能及常用
群集
调度
算法
、
Haproxy
常用...
文章目录
Haproxy
概述一、
Haproxy
功能及常用
群集
调度
算法
1.1 轮询 RR(Round Robin)1.2...
赞
踩
article
selenium
指定谷歌用户,报错:Message:
unknown
error
:
failed
t...
本地电脑谷歌浏览器有好几个谷歌用户账号,因需求需要用
selenium
打开指定的谷歌用户,但是报错:
selenium
.co...
赞
踩
article
haproxy
高
可用
...
五 使用keepalived+Haproxy主从配置来达到能够针对前段流量进行负载均衡到多台后端web1、web2、we...
赞
踩
相关标签
负载均衡
nginx
服务器
haproxy nginx
linux
haproxy
centos
HAProxy
配置文件
运维
haproxy配置详解
selenium
测试工具