Willy Tarreau | 2212e6a | 2015-10-13 14:40:55 +0200 | [diff] [blame] | 1 | ------------------------ |
| 2 | HAProxy Management Guide |
| 3 | ------------------------ |
| 4 | version 1.6 |
| 5 | |
| 6 | |
| 7 | This document describes how to start, stop, manage, and troubleshoot HAProxy, |
| 8 | as well as some known limitations and traps to avoid. It does not describe how |
| 9 | to configure it (for this please read configuration.txt). |
| 10 | |
| 11 | Note to documentation contributors : |
| 12 | This document is formatted with 80 columns per line, with even number of |
| 13 | spaces for indentation and without tabs. Please follow these rules strictly |
| 14 | so that it remains easily printable everywhere. If you add sections, please |
| 15 | update the summary below for easier searching. |
| 16 | |
| 17 | |
| 18 | Summary |
| 19 | ------- |
| 20 | |
| 21 | 1. Prerequisites |
| 22 | 2. Quick reminder about HAProxy's architecture |
| 23 | 3. Starting HAProxy |
| 24 | 4. Stopping and restarting HAProxy |
| 25 | 5. File-descriptor limitations |
| 26 | 6. Memory management |
| 27 | 7. CPU usage |
| 28 | 8. Logging |
| 29 | 9. Statistics and monitoring |
Willy Tarreau | 44aed90 | 2015-10-13 14:45:29 +0200 | [diff] [blame] | 30 | 9.1. CSV format |
| 31 | 9.2. Unix Socket commands |
Willy Tarreau | 2212e6a | 2015-10-13 14:40:55 +0200 | [diff] [blame] | 32 | 10. Tricks for easier configuration management |
| 33 | 11. Well-known traps to avoid |
| 34 | 12. Debugging and performance issues |
| 35 | 13. Security considerations |
| 36 | |
| 37 | |
| 38 | 1. Prerequisites |
| 39 | ---------------- |
| 40 | |
| 41 | In this document it is assumed that the reader has sufficient administration |
| 42 | skills on a UNIX-like operating system, uses the shell on a daily basis and is |
| 43 | familiar with troubleshooting utilities such as strace and tcpdump. |
| 44 | |
| 45 | |
| 46 | 2. Quick reminder about HAProxy's architecture |
| 47 | ---------------------------------------------- |
| 48 | |
| 49 | HAProxy is a single-threaded, event-driven, non-blocking daemon. This means is |
| 50 | uses event multiplexing to schedule all of its activities instead of relying on |
| 51 | the system to schedule between multiple activities. Most of the time it runs as |
| 52 | a single process, so the output of "ps aux" on a system will report only one |
| 53 | "haproxy" process, unless a soft reload is in progress and an older process is |
| 54 | finishing its job in parallel to the new one. It is thus always easy to trace |
| 55 | its activity using the strace utility. |
| 56 | |
| 57 | HAProxy is designed to isolate itself into a chroot jail during startup, where |
| 58 | it cannot perform any file-system access at all. This is also true for the |
| 59 | libraries it depends on (eg: libc, libssl, etc). The immediate effect is that |
| 60 | a running process will not be able to reload a configuration file to apply |
| 61 | changes, instead a new process will be started using the updated configuration |
| 62 | file. Some other less obvious effects are that some timezone files or resolver |
| 63 | files the libc might attempt to access at run time will not be found, though |
| 64 | this should generally not happen as they're not needed after startup. A nice |
| 65 | consequence of this principle is that the HAProxy process is totally stateless, |
| 66 | and no cleanup is needed after it's killed, so any killing method that works |
| 67 | will do the right thing. |
| 68 | |
| 69 | HAProxy doesn't write log files, but it relies on the standard syslog protocol |
| 70 | to send logs to a remote server (which is often located on the same system). |
| 71 | |
| 72 | HAProxy uses its internal clock to enforce timeouts, that is derived from the |
| 73 | system's time but where unexpected drift is corrected. This is done by limiting |
| 74 | the time spent waiting in poll() for an event, and measuring the time it really |
| 75 | took. In practice it never waits more than one second. This explains why, when |
| 76 | running strace over a completely idle process, periodic calls to poll() (or any |
| 77 | of its variants) surrounded by two gettimeofday() calls are noticed. They are |
| 78 | normal, completely harmless and so cheap that the load they imply is totally |
| 79 | undetectable at the system scale, so there's nothing abnormal there. Example : |
| 80 | |
| 81 | 16:35:40.002320 gettimeofday({1442759740, 2605}, NULL) = 0 |
| 82 | 16:35:40.002942 epoll_wait(0, {}, 200, 1000) = 0 |
| 83 | 16:35:41.007542 gettimeofday({1442759741, 7641}, NULL) = 0 |
| 84 | 16:35:41.007998 gettimeofday({1442759741, 8114}, NULL) = 0 |
| 85 | 16:35:41.008391 epoll_wait(0, {}, 200, 1000) = 0 |
| 86 | 16:35:42.011313 gettimeofday({1442759742, 11411}, NULL) = 0 |
| 87 | |
| 88 | HAProxy is a TCP proxy, not a router. It deals with established connections that |
| 89 | have been validated by the kernel, and not with packets of any form nor with |
| 90 | sockets in other states (eg: no SYN_RECV nor TIME_WAIT), though their existence |
| 91 | may prevent it from binding a port. It relies on the system to accept incoming |
| 92 | connections and to initiate outgoing connections. An immediate effect of this is |
| 93 | that there is no relation between packets observed on the two sides of a |
| 94 | forwarded connection, which can be of different size, numbers and even family. |
| 95 | Since a connection may only be accepted from a socket in LISTEN state, all the |
| 96 | sockets it is listening to are necessarily visible using the "netstat" utility |
| 97 | to show listening sockets. Example : |
| 98 | |
| 99 | # netstat -ltnp |
| 100 | Active Internet connections (only servers) |
| 101 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name |
| 102 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1629/sshd |
| 103 | tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 2847/haproxy |
| 104 | tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 2847/haproxy |
| 105 | |
| 106 | |
| 107 | 3. Starting HAProxy |
| 108 | ------------------- |
| 109 | |
| 110 | HAProxy is started by invoking the "haproxy" program with a number of arguments |
| 111 | passed on the command line. The actual syntax is : |
| 112 | |
| 113 | $ haproxy [<options>]* |
| 114 | |
| 115 | where [<options>]* is any number of options. An option always starts with '-' |
| 116 | followed by one of more letters, and possibly followed by one or multiple extra |
| 117 | arguments. Without any option, HAProxy displays the help page with a reminder |
| 118 | about supported options. Available options may vary slightly based on the |
| 119 | operating system. A fair number of these options overlap with an equivalent one |
| 120 | if the "global" section. In this case, the command line always has precedence |
| 121 | over the configuration file, so that the command line can be used to quickly |
| 122 | enforce some settings without touching the configuration files. The current |
| 123 | list of options is : |
| 124 | |
| 125 | -- <cfgfile>* : all the arguments following "--" are paths to configuration |
| 126 | file to be loaded and processed in the declaration order. It is mostly |
| 127 | useful when relying on the shell to load many files that are numerically |
| 128 | ordered. See also "-f". The difference between "--" and "-f" is that one |
| 129 | "-f" must be placed before each file name, while a single "--" is needed |
| 130 | before all file names. Both options can be used together, the command line |
| 131 | ordering still applies. When more than one file is specified, each file |
| 132 | must start on a section boundary, so the first keyword of each file must be |
| 133 | one of "global", "defaults", "peers", "listen", "frontend", "backend", and |
| 134 | so on. A file cannot contain just a server list for example. |
| 135 | |
| 136 | -f <cfgfile> : adds <cfgfile> to the list of configuration files to be |
| 137 | loaded. Configuration files are loaded and processed in their declaration |
| 138 | order. This option may be specified multiple times to load multiple files. |
| 139 | See also "--". The difference between "--" and "-f" is that one "-f" must |
| 140 | be placed before each file name, while a single "--" is needed before all |
| 141 | file names. Both options can be used together, the command line ordering |
| 142 | still applies. When more than one file is specified, each file must start |
| 143 | on a section boundary, so the first keyword of each file must be one of |
| 144 | "global", "defaults", "peers", "listen", "frontend", "backend", and so |
| 145 | on. A file cannot contain just a server list for example. |
| 146 | |
| 147 | -C <dir> : changes to directory <dir> before loading configuration |
| 148 | files. This is useful when using relative paths. Warning when using |
| 149 | wildcards after "--" which are in fact replaced by the shell before |
| 150 | starting haproxy. |
| 151 | |
| 152 | -D : start as a daemon. The process detaches from the current terminal after |
| 153 | forking, and errors are not reported anymore in the terminal. It is |
| 154 | equivalent to the "daemon" keyword in the "global" section of the |
| 155 | configuration. It is recommended to always force it in any init script so |
| 156 | that a faulty configuration doesn't prevent the system from booting. |
| 157 | |
| 158 | -Ds : work in systemd mode. Only used by the systemd wrapper. |
| 159 | |
| 160 | -L <name> : change the local peer name to <name>, which defaults to the local |
| 161 | hostname. This is used only with peers replication. |
| 162 | |
| 163 | -N <limit> : sets the default per-proxy maxconn to <limit> instead of the |
| 164 | builtin default value (usually 2000). Only useful for debugging. |
| 165 | |
| 166 | -V : enable verbose mode (disables quiet mode). Reverts the effect of "-q" or |
| 167 | "quiet". |
| 168 | |
| 169 | -c : only performs a check of the configuration files and exits before trying |
| 170 | to bind. The exit status is zero if everything is OK, or non-zero if an |
| 171 | error is encountered. |
| 172 | |
| 173 | -d : enable debug mode. This disables daemon mode, forces the process to stay |
| 174 | in foreground and to show incoming and outgoing events. It is equivalent to |
| 175 | the "global" section's "debug" keyword. It must never be used in an init |
| 176 | script. |
| 177 | |
| 178 | -dG : disable use of getaddrinfo() to resolve host names into addresses. It |
| 179 | can be used when suspecting that getaddrinfo() doesn't work as expected. |
| 180 | This option was made available because many bogus implementations of |
| 181 | getaddrinfo() exist on various systems and cause anomalies that are |
| 182 | difficult to troubleshoot. |
| 183 | |
| 184 | -dM[<byte>] : forces memory poisonning, which means that each and every |
| 185 | memory region allocated with malloc() or pool_alloc2() will be filled with |
| 186 | <byte> before being passed to the caller. When <byte> is not specified, it |
| 187 | defaults to 0x50 ('P'). While this slightly slows down operations, it is |
| 188 | useful to reliably trigger issues resulting from missing initializations in |
| 189 | the code that cause random crashes. Note that -dM0 has the effect of |
| 190 | turning any malloc() into a calloc(). In any case if a bug appears or |
| 191 | disappears when using this option it means there is a bug in haproxy, so |
| 192 | please report it. |
| 193 | |
| 194 | -dS : disable use of the splice() system call. It is equivalent to the |
| 195 | "global" section's "nosplice" keyword. This may be used when splice() is |
| 196 | suspected to behave improperly or to cause performance issues, or when |
| 197 | using strace to see the forwarded data (which do not appear when using |
| 198 | splice()). |
| 199 | |
| 200 | -dV : disable SSL verify on the server side. It is equivalent to having |
| 201 | "ssl-server-verify none" in the "global" section. This is useful when |
| 202 | trying to reproduce production issues out of the production |
| 203 | environment. Never use this in an init script as it degrades SSL security |
| 204 | to the servers. |
| 205 | |
| 206 | -db : disable background mode and multi-process mode. The process remains in |
| 207 | foreground. It is mainly used during development or during small tests, as |
| 208 | Ctrl-C is enough to stop the process. Never use it in an init script. |
| 209 | |
| 210 | -de : disable the use of the "epoll" poller. It is equivalent to the "global" |
| 211 | section's keyword "noepoll". It is mostly useful when suspecting a bug |
| 212 | related to this poller. On systems supporting epoll, the fallback will |
| 213 | generally be the "poll" poller. |
| 214 | |
| 215 | -dk : disable the use of the "kqueue" poller. It is equivalent to the |
| 216 | "global" section's keyword "nokqueue". It is mostly useful when suspecting |
| 217 | a bug related to this poller. On systems supporting kqueue, the fallback |
| 218 | will generally be the "poll" poller. |
| 219 | |
| 220 | -dp : disable the use of the "poll" poller. It is equivalent to the "global" |
| 221 | section's keyword "nopoll". It is mostly useful when suspecting a bug |
| 222 | related to this poller. On systems supporting poll, the fallback will |
| 223 | generally be the "select" poller, which cannot be disabled and is limited |
| 224 | to 1024 file descriptors. |
| 225 | |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 226 | -m <limit> : limit the total allocatable memory to <limit> megabytes across |
| 227 | all processes. This may cause some connection refusals or some slowdowns |
Willy Tarreau | 2212e6a | 2015-10-13 14:40:55 +0200 | [diff] [blame] | 228 | depending on the amount of memory needed for normal operations. This is |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 229 | mostly used to force the processes to work in a constrained resource usage |
| 230 | scenario. It is important to note that the memory is not shared between |
| 231 | processes, so in a multi-process scenario, this value is first divided by |
| 232 | global.nbproc before forking. |
Willy Tarreau | 2212e6a | 2015-10-13 14:40:55 +0200 | [diff] [blame] | 233 | |
| 234 | -n <limit> : limits the per-process connection limit to <limit>. This is |
| 235 | equivalent to the global section's keyword "maxconn". It has precedence |
| 236 | over this keyword. This may be used to quickly force lower limits to avoid |
| 237 | a service outage on systems where resource limits are too low. |
| 238 | |
| 239 | -p <file> : write all processes' pids into <file> during startup. This is |
| 240 | equivalent to the "global" section's keyword "pidfile". The file is opened |
| 241 | before entering the chroot jail, and after doing the chdir() implied by |
| 242 | "-C". Each pid appears on its own line. |
| 243 | |
| 244 | -q : set "quiet" mode. This disables some messages during the configuration |
| 245 | parsing and during startup. It can be used in combination with "-c" to |
| 246 | just check if a configuration file is valid or not. |
| 247 | |
| 248 | -sf <pid>* : send the "finish" signal (SIGUSR1) to older processes after boot |
| 249 | completion to ask them to finish what they are doing and to leave. <pid> |
| 250 | is a list of pids to signal (one per argument). The list ends on any |
| 251 | option starting with a "-". It is not a problem if the list of pids is |
| 252 | empty, so that it can be built on the fly based on the result of a command |
| 253 | like "pidof" or "pgrep". |
| 254 | |
| 255 | -st <pid>* : send the "terminate" signal (SIGTERM) to older processes after |
| 256 | boot completion to terminate them immediately without finishing what they |
| 257 | were doing. <pid> is a list of pids to signal (one per argument). The list |
| 258 | is ends on any option starting with a "-". It is not a problem if the list |
| 259 | of pids is empty, so that it can be built on the fly based on the result of |
| 260 | a command like "pidof" or "pgrep". |
| 261 | |
| 262 | -v : report the version and build date. |
| 263 | |
| 264 | -vv : display the version, build options, libraries versions and usable |
| 265 | pollers. This output is systematically requested when filing a bug report. |
| 266 | |
| 267 | A safe way to start HAProxy from an init file consists in forcing the deamon |
| 268 | mode, storing existing pids to a pid file and using this pid file to notify |
| 269 | older processes to finish before leaving : |
| 270 | |
| 271 | haproxy -f /etc/haproxy.cfg \ |
| 272 | -D -p /var/run/haproxy.pid -sf $(cat /var/run/haproxy.pid) |
| 273 | |
| 274 | When the configuration is split into a few specific files (eg: tcp vs http), |
| 275 | it is recommended to use the "-f" option : |
| 276 | |
| 277 | haproxy -f /etc/haproxy/global.cfg -f /etc/haproxy/stats.cfg \ |
| 278 | -f /etc/haproxy/default-tcp.cfg -f /etc/haproxy/tcp.cfg \ |
| 279 | -f /etc/haproxy/default-http.cfg -f /etc/haproxy/http.cfg \ |
| 280 | -D -p /var/run/haproxy.pid -sf $(cat /var/run/haproxy.pid) |
| 281 | |
| 282 | When an unknown number of files is expected, such as customer-specific files, |
| 283 | it is recommended to assign them a name starting with a fixed-size sequence |
| 284 | number and to use "--" to load them, possibly after loading some defaults : |
| 285 | |
| 286 | haproxy -f /etc/haproxy/global.cfg -f /etc/haproxy/stats.cfg \ |
| 287 | -f /etc/haproxy/default-tcp.cfg -f /etc/haproxy/tcp.cfg \ |
| 288 | -f /etc/haproxy/default-http.cfg -f /etc/haproxy/http.cfg \ |
| 289 | -D -p /var/run/haproxy.pid -sf $(cat /var/run/haproxy.pid) \ |
| 290 | -f /etc/haproxy/default-customers.cfg -- /etc/haproxy/customers/* |
| 291 | |
| 292 | Sometimes a failure to start may happen for whatever reason. Then it is |
| 293 | important to verify if the version of HAProxy you are invoking is the expected |
| 294 | version and if it supports the features you are expecting (eg: SSL, PCRE, |
| 295 | compression, Lua, etc). This can be verified using "haproxy -vv". Some |
| 296 | important information such as certain build options, the target system and |
| 297 | the versions of the libraries being used are reported there. It is also what |
| 298 | you will systematically be asked for when posting a bug report : |
| 299 | |
| 300 | $ haproxy -vv |
| 301 | HA-Proxy version 1.6-dev7-a088d3-4 2015/10/08 |
| 302 | Copyright 2000-2015 Willy Tarreau <willy@haproxy.org> |
| 303 | |
| 304 | Build options : |
| 305 | TARGET = linux2628 |
| 306 | CPU = generic |
| 307 | CC = gcc |
| 308 | CFLAGS = -pg -O0 -g -fno-strict-aliasing -Wdeclaration-after-statement \ |
| 309 | -DBUFSIZE=8030 -DMAXREWRITE=1030 -DSO_MARK=36 -DTCP_REPAIR=19 |
| 310 | OPTIONS = USE_ZLIB=1 USE_DLMALLOC=1 USE_OPENSSL=1 USE_LUA=1 USE_PCRE=1 |
| 311 | |
| 312 | Default settings : |
| 313 | maxconn = 2000, bufsize = 8030, maxrewrite = 1030, maxpollevents = 200 |
| 314 | |
| 315 | Encrypted password support via crypt(3): yes |
| 316 | Built with zlib version : 1.2.6 |
| 317 | Compression algorithms supported : identity("identity"), deflate("deflate"), \ |
| 318 | raw-deflate("deflate"), gzip("gzip") |
| 319 | Built with OpenSSL version : OpenSSL 1.0.1o 12 Jun 2015 |
| 320 | Running on OpenSSL version : OpenSSL 1.0.1o 12 Jun 2015 |
| 321 | OpenSSL library supports TLS extensions : yes |
| 322 | OpenSSL library supports SNI : yes |
| 323 | OpenSSL library supports prefer-server-ciphers : yes |
| 324 | Built with PCRE version : 8.12 2011-01-15 |
| 325 | PCRE library supports JIT : no (USE_PCRE_JIT not set) |
| 326 | Built with Lua version : Lua 5.3.1 |
| 327 | Built with transparent proxy support using: IP_TRANSPARENT IP_FREEBIND |
| 328 | |
| 329 | Available polling systems : |
| 330 | epoll : pref=300, test result OK |
| 331 | poll : pref=200, test result OK |
| 332 | select : pref=150, test result OK |
| 333 | Total: 3 (3 usable), will use epoll. |
| 334 | |
| 335 | The relevant information that many non-developer users can verify here are : |
| 336 | - the version : 1.6-dev7-a088d3-4 above means the code is currently at commit |
| 337 | ID "a088d3" which is the 4th one after after official version "1.6-dev7". |
| 338 | Version 1.6-dev7 would show as "1.6-dev7-8c1ad7". What matters here is in |
| 339 | fact "1.6-dev7". This is the 7th development version of what will become |
| 340 | version 1.6 in the future. A development version not suitable for use in |
| 341 | production (unless you know exactly what you are doing). A stable version |
| 342 | will show as a 3-numbers version, such as "1.5.14-16f863", indicating the |
| 343 | 14th level of fix on top of version 1.5. This is a production-ready version. |
| 344 | |
| 345 | - the release date : 2015/10/08. It is represented in the universal |
| 346 | year/month/day format. Here this means August 8th, 2015. Given that stable |
| 347 | releases are issued every few months (1-2 months at the beginning, sometimes |
| 348 | 6 months once the product becomes very stable), if you're seeing an old date |
| 349 | here, it means you're probably affected by a number of bugs or security |
| 350 | issues that have since been fixed and that it might be worth checking on the |
| 351 | official site. |
| 352 | |
| 353 | - build options : they are relevant to people who build their packages |
| 354 | themselves, they can explain why things are not behaving as expected. For |
| 355 | example the development version above was built for Linux 2.6.28 or later, |
| 356 | targetting a generic CPU (no CPU-specific optimizations), and lacks any |
| 357 | code optimization (-O0) so it will perform poorly in terms of performance. |
| 358 | |
| 359 | - libraries versions : zlib version is reported as found in the library |
| 360 | itself. In general zlib is considered a very stable product and upgrades |
| 361 | are almost never needed. OpenSSL reports two versions, the version used at |
| 362 | build time and the one being used, as found on the system. These ones may |
| 363 | differ by the last letter but never by the numbers. The build date is also |
| 364 | reported because most OpenSSL bugs are security issues and need to be taken |
| 365 | seriously, so this library absolutely needs to be kept up to date. Seeing a |
| 366 | 4-months old version here is highly suspicious and indeed an update was |
| 367 | missed. PCRE provides very fast regular expressions and is highly |
| 368 | recommended. Certain of its extensions such as JIT are not present in all |
| 369 | versions and still young so some people prefer not to build with them, |
| 370 | which is why the biuld status is reported as well. Regarding the Lua |
| 371 | scripting language, HAProxy expects version 5.3 which is very young since |
| 372 | it was released a little time before HAProxy 1.6. It is important to check |
| 373 | on the Lua web site if some fixes are proposed for this branch. |
| 374 | |
| 375 | - Available polling systems will affect the process's scalability when |
| 376 | dealing with more than about one thousand of concurrent connections. These |
| 377 | ones are only available when the correct system was indicated in the TARGET |
| 378 | variable during the build. The "epoll" mechanism is highly recommended on |
| 379 | Linux, and the kqueue mechanism is highly recommended on BSD. Lacking them |
| 380 | will result in poll() or even select() being used, causing a high CPU usage |
| 381 | when dealing with a lot of connections. |
| 382 | |
| 383 | |
| 384 | 4. Stopping and restarting HAProxy |
| 385 | ---------------------------------- |
| 386 | |
| 387 | HAProxy supports a graceful and a hard stop. The hard stop is simple, when the |
| 388 | SIGTERM signal is sent to the haproxy process, it immediately quits and all |
| 389 | established connections are closed. The graceful stop is triggered when the |
| 390 | SIGUSR1 signal is sent to the haproxy process. It consists in only unbinding |
| 391 | from listening ports, but continue to process existing connections until they |
| 392 | close. Once the last connection is closed, the process leaves. |
| 393 | |
| 394 | The hard stop method is used for the "stop" or "restart" actions of the service |
| 395 | management script. The graceful stop is used for the "reload" action which |
| 396 | tries to seamlessly reload a new configuration in a new process. |
| 397 | |
| 398 | Both of these signals may be sent by the new haproxy process itself during a |
| 399 | reload or restart, so that they are sent at the latest possible moment and only |
| 400 | if absolutely required. This is what is performed by the "-st" (hard) and "-sf" |
| 401 | (graceful) options respectively. |
| 402 | |
| 403 | To understand better how these signals are used, it is important to understand |
| 404 | the whole restart mechanism. |
| 405 | |
| 406 | First, an existing haproxy process is running. The administrator uses a system |
| 407 | specific command such as "/etc/init.d/haproxy reload" to indicate he wants to |
| 408 | take the new configuration file into effect. What happens then is the following. |
| 409 | First, the service script (/etc/init.d/haproxy or equivalent) will verify that |
| 410 | the configuration file parses correctly using "haproxy -c". After that it will |
| 411 | try to start haproxy with this configuration file, using "-st" or "-sf". |
| 412 | |
| 413 | Then HAProxy tries to bind to all listening ports. If some fatal errors happen |
| 414 | (eg: address not present on the system, permission denied), the process quits |
| 415 | with an error. If a socket binding fails because a port is already in use, then |
| 416 | the process will first send a SIGTTOU signal to all the pids specified in the |
| 417 | "-st" or "-sf" pid list. This is what is called the "pause" signal. It instructs |
| 418 | all existing haproxy processes to temporarily stop listening to their ports so |
| 419 | that the new process can try to bind again. During this time, the old process |
| 420 | continues to process existing connections. If the binding still fails (because |
| 421 | for example a port is shared with another daemon), then the new process sends a |
| 422 | SIGTTIN signal to the old processes to instruct them to resume operations just |
| 423 | as if nothing happened. The old processes will then restart listening to the |
| 424 | ports and continue to accept connections. Not that this mechanism is system |
| 425 | dependant and some operating systems may not support it in multi-process mode. |
| 426 | |
| 427 | If the new process manages to bind correctly to all ports, then it sends either |
| 428 | the SIGTERM (hard stop in case of "-st") or the SIGUSR1 (graceful stop in case |
| 429 | of "-sf") to all processes to notify them that it is now in charge of operations |
| 430 | and that the old processes will have to leave, either immediately or once they |
| 431 | have finished their job. |
| 432 | |
| 433 | It is important to note that during this timeframe, there are two small windows |
| 434 | of a few milliseconds each where it is possible that a few connection failures |
| 435 | will be noticed during high loads. Typically observed failure rates are around |
| 436 | 1 failure during a reload operation every 10000 new connections per second, |
| 437 | which means that a heavily loaded site running at 30000 new connections per |
| 438 | second may see about 3 failed connection upon every reload. The two situations |
| 439 | where this happens are : |
| 440 | |
| 441 | - if the new process fails to bind due to the presence of the old process, |
| 442 | it will first have to go through the SIGTTOU+SIGTTIN sequence, which |
| 443 | typically lasts about one millisecond for a few tens of frontends, and |
| 444 | during which some ports will not be bound to the old process and not yet |
| 445 | bound to the new one. HAProxy works around this on systems that support the |
| 446 | SO_REUSEPORT socket options, as it allows the new process to bind without |
| 447 | first asking the old one to unbind. Most BSD systems have been supporting |
| 448 | this almost forever. Linux has been supporting this in version 2.0 and |
| 449 | dropped it around 2.2, but some patches were floating around by then. It |
| 450 | was reintroduced in kernel 3.9, so if you are observing a connection |
| 451 | failure rate above the one mentionned above, please ensure that your kernel |
| 452 | is 3.9 or newer, or that relevant patches were backported to your kernel |
| 453 | (less likely). |
| 454 | |
| 455 | - when the old processes close the listening ports, the kernel may not always |
| 456 | redistribute any pending connection that was remaining in the socket's |
| 457 | backlog. Under high loads, a SYN packet may happen just before the socket |
| 458 | is closed, and will lead to an RST packet being sent to the client. In some |
| 459 | critical environments where even one drop is not acceptable, these ones are |
| 460 | sometimes dealt with using firewall rules to block SYN packets during the |
| 461 | reload, forcing the client to retransmit. This is totally system-dependent, |
| 462 | as some systems might be able to visit other listening queues and avoid |
| 463 | this RST. A second case concerns the ACK from the client on a local socket |
| 464 | that was in SYN_RECV state just before the close. This ACK will lead to an |
| 465 | RST packet while the haproxy process is still not aware of it. This one is |
| 466 | harder to get rid of, though the firewall filtering rules mentionned above |
| 467 | will work well if applied one second or so before restarting the process. |
| 468 | |
| 469 | For the vast majority of users, such drops will never ever happen since they |
| 470 | don't have enough load to trigger the race conditions. And for most high traffic |
| 471 | users, the failure rate is still fairly within the noise margin provided that at |
| 472 | least SO_REUSEPORT is properly supported on their systems. |
| 473 | |
| 474 | |
| 475 | 5. File-descriptor limitations |
| 476 | ------------------------------ |
| 477 | |
| 478 | In order to ensure that all incoming connections will successfully be served, |
| 479 | HAProxy computes at load time the total number of file descriptors that will be |
| 480 | needed during the process's life. A regular Unix process is generally granted |
| 481 | 1024 file descriptors by default, and a privileged process can raise this limit |
| 482 | itself. This is one reason for starting HAProxy as root and letting it adjust |
| 483 | the limit. The default limit of 1024 file descriptors roughly allow about 500 |
| 484 | concurrent connections to be processed. The computation is based on the global |
| 485 | maxconn parameter which limits the total number of connections per process, the |
| 486 | number of listeners, the number of servers which have a health check enabled, |
| 487 | the agent checks, the peers, the loggers and possibly a few other technical |
| 488 | requirements. A simple rough estimate of this number consists in simply |
| 489 | doubling the maxconn value and adding a few tens to get the approximate number |
| 490 | of file descriptors needed. |
| 491 | |
| 492 | Originally HAProxy did not know how to compute this value, and it was necessary |
| 493 | to pass the value using the "ulimit-n" setting in the global section. This |
| 494 | explains why even today a lot of configurations are seen with this setting |
| 495 | present. Unfortunately it was often miscalculated resulting in connection |
| 496 | failures when approaching maxconn instead of throttling incoming connection |
| 497 | while waiting for the needed resources. For this reason it is important to |
| 498 | remove any vestigal "ulimit-n" setting that can remain from very old versions. |
| 499 | |
| 500 | Raising the number of file descriptors to accept even moderate loads is |
| 501 | mandatory but comes with some OS-specific adjustments. First, the select() |
| 502 | polling system is limited to 1024 file descriptors. In fact on Linux it used |
| 503 | to be capable of handling more but since certain OS ship with excessively |
| 504 | restrictive SELinux policies forbidding the use of select() with more than |
| 505 | 1024 file descriptors, HAProxy now refuses to start in this case in order to |
| 506 | avoid any issue at run time. On all supported operating systems, poll() is |
| 507 | available and will not suffer from this limitation. It is automatically picked |
| 508 | so there is nothing ot do to get a working configuration. But poll's becomes |
| 509 | very slow when the number of file descriptors increases. While HAProxy does its |
| 510 | best to limit this performance impact (eg: via the use of the internal file |
| 511 | descriptor cache and batched processing), a good rule of thumb is that using |
| 512 | poll() with more than a thousand concurrent connections will use a lot of CPU. |
| 513 | |
| 514 | For Linux systems base on kernels 2.6 and above, the epoll() system call will |
| 515 | be used. It's a much more scalable mechanism relying on callbacks in the kernel |
| 516 | that guarantee a constant wake up time regardless of the number of registered |
| 517 | monitored file descriptors. It is automatically used where detected, provided |
| 518 | that HAProxy had been built for one of the Linux flavors. Its presence and |
| 519 | support can be verified using "haproxy -vv". |
| 520 | |
| 521 | For BSD systems which support it, kqueue() is available as an alternative. It |
| 522 | is much faster than poll() and even slightly faster than epoll() thanks to its |
| 523 | batched handling of changes. At least FreeBSD and OpenBSD support it. Just like |
| 524 | with Linux's epoll(), its support and availability are reported in the output |
| 525 | of "haproxy -vv". |
| 526 | |
| 527 | Having a good poller is one thing, but it is mandatory that the process can |
| 528 | reach the limits. When HAProxy starts, it immediately sets the new process's |
| 529 | file descriptor limits and verifies if it succeeds. In case of failure, it |
| 530 | reports it before forking so that the administrator can see the problem. As |
| 531 | long as the process is started by as root, there should be no reason for this |
| 532 | setting to fail. However, it can fail if the process is started by an |
| 533 | unprivileged user. If there is a compelling reason for *not* starting haproxy |
| 534 | as root (eg: started by end users, or by a per-application account), then the |
| 535 | file descriptor limit can be raised by the system administrator for this |
| 536 | specific user. The effectiveness of the setting can be verified by issuing |
| 537 | "ulimit -n" from the user's command line. It should reflect the new limit. |
| 538 | |
| 539 | Warning: when an unprivileged user's limits are changed in this user's account, |
| 540 | it is fairly common that these values are only considered when the user logs in |
| 541 | and not at all in some scripts run at system boot time nor in crontabs. This is |
| 542 | totally dependent on the operating system, keep in mind to check "ulimit -n" |
| 543 | before starting haproxy when running this way. The general advice is never to |
| 544 | start haproxy as an unprivileged user for production purposes. Another good |
| 545 | reason is that it prevents haproxy from enabling some security protections. |
| 546 | |
| 547 | Once it is certain that the system will allow the haproxy process to use the |
| 548 | requested number of file descriptors, two new system-specific limits may be |
| 549 | encountered. The first one is the system-wide file descriptor limit, which is |
| 550 | the total number of file descriptors opened on the system, covering all |
| 551 | processes. When this limit is reached, accept() or socket() will typically |
| 552 | return ENFILE. The second one is the per-process hard limit on the number of |
| 553 | file descriptors, it prevents setrlimit() from being set higher. Both are very |
| 554 | dependent on the operating system. On Linux, the system limit is set at boot |
| 555 | based on the amount of memory. It can be changed with the "fs.file-max" sysctl. |
| 556 | And the per-process hard limit is set to 1048576 by default, but it can be |
| 557 | changed using the "fs.nr_open" sysctl. |
| 558 | |
| 559 | File descriptor limitations may be observed on a running process when they are |
| 560 | set too low. The strace utility will report that accept() and socket() return |
| 561 | "-1 EMFILE" when the process's limits have been reached. In this case, simply |
| 562 | raising the "ulimit-n" value (or removing it) will solve the problem. If these |
| 563 | system calls return "-1 ENFILE" then it means that the kernel's limits have |
| 564 | been reached and that something must be done on a system-wide parameter. These |
| 565 | trouble must absolutely be addressed, as they result in high CPU usage (when |
| 566 | accept() fails) and failed connections that are generally visible to the user. |
| 567 | One solution also consists in lowering the global maxconn value to enforce |
| 568 | serialization, and possibly to disable HTTP keep-alive to force connections |
| 569 | to be released and reused faster. |
| 570 | |
| 571 | |
| 572 | 6. Memory management |
| 573 | -------------------- |
| 574 | |
| 575 | HAProxy uses a simple and fast pool-based memory management. Since it relies on |
| 576 | a small number of different object types, it's much more efficient to pick new |
| 577 | objects from a pool which already contains objects of the appropriate size than |
| 578 | to call malloc() for each different size. The pools are organized as a stack or |
| 579 | LIFO, so that newly allocated objects are taken from recently released objects |
| 580 | still hot in the CPU caches. Pools of similar sizes are merged together, in |
| 581 | order to limit memory fragmentation. |
| 582 | |
| 583 | By default, since the focus is set on performance, each released object is put |
| 584 | back into the pool it came from, and allocated objects are never freed since |
| 585 | they are expected to be reused very soon. |
| 586 | |
| 587 | On the CLI, it is possible to check how memory is being used in pools thanks to |
| 588 | the "show pools" command : |
| 589 | |
| 590 | > show pools |
| 591 | Dumping pools usage. Use SIGQUIT to flush them. |
| 592 | - Pool pipe (32 bytes) : 5 allocated (160 bytes), 5 used, 3 users [SHARED] |
| 593 | - Pool hlua_com (48 bytes) : 0 allocated (0 bytes), 0 used, 1 users [SHARED] |
| 594 | - Pool vars (64 bytes) : 0 allocated (0 bytes), 0 used, 2 users [SHARED] |
| 595 | - Pool task (112 bytes) : 5 allocated (560 bytes), 5 used, 1 users [SHARED] |
| 596 | - Pool session (128 bytes) : 1 allocated (128 bytes), 1 used, 2 users [SHARED] |
| 597 | - Pool http_txn (272 bytes) : 0 allocated (0 bytes), 0 used, 1 users [SHARED] |
| 598 | - Pool connection (352 bytes) : 2 allocated (704 bytes), 2 used, 1 users [SHARED] |
| 599 | - Pool hdr_idx (416 bytes) : 0 allocated (0 bytes), 0 used, 1 users [SHARED] |
| 600 | - Pool stream (864 bytes) : 1 allocated (864 bytes), 1 used, 1 users [SHARED] |
| 601 | - Pool requri (1024 bytes) : 0 allocated (0 bytes), 0 used, 1 users [SHARED] |
| 602 | - Pool buffer (8064 bytes) : 3 allocated (24192 bytes), 2 used, 1 users [SHARED] |
| 603 | Total: 11 pools, 26608 bytes allocated, 18544 used. |
| 604 | |
| 605 | The pool name is only indicative, it's the name of the first object type using |
| 606 | this pool. The size in parenthesis is the object size for objects in this pool. |
| 607 | Object sizes are always rounded up to the closest multiple of 16 bytes. The |
| 608 | number of objects currently allocated and the equivalent number of bytes is |
| 609 | reported so that it is easy to know which pool is responsible for the highest |
| 610 | memory usage. The number of objects currently in use is reported as well in the |
| 611 | "used" field. The difference between "allocated" and "used" corresponds to the |
| 612 | objects that have been freed and are available for immediate use. |
| 613 | |
| 614 | It is possible to limit the amount of memory allocated per process using the |
| 615 | "-m" command line option, followed by a number of megabytes. It covers all of |
| 616 | the process's addressable space, so that includes memory used by some libraries |
| 617 | as well as the stack, but it is a reliable limit when building a resource |
| 618 | constrained system. It works the same way as "ulimit -v" on systems which have |
| 619 | it, or "ulimit -d" for the other ones. |
| 620 | |
| 621 | If a memory allocation fails due to the memory limit being reached or because |
| 622 | the system doesn't have any enough memory, then haproxy will first start to |
| 623 | free all available objects from all pools before attempting to allocate memory |
| 624 | again. This mechanism of releasing unused memory can be triggered by sending |
| 625 | the signal SIGQUIT to the haproxy process. When doing so, the pools state prior |
| 626 | to the flush will also be reported to stderr when the process runs in |
| 627 | foreground. |
| 628 | |
| 629 | During a reload operation, the process switched to the graceful stop state also |
| 630 | automatically performs some flushes after releasing any connection so that all |
| 631 | possible memory is released to save it for the new process. |
| 632 | |
| 633 | |
| 634 | 7. CPU usage |
| 635 | ------------ |
| 636 | |
| 637 | HAProxy normally spends most of its time in the system and a smaller part in |
| 638 | userland. A finely tuned 3.5 GHz CPU can sustain a rate about 80000 end-to-end |
| 639 | connection setups and closes per second at 100% CPU on a single core. When one |
| 640 | core is saturated, typical figures are : |
| 641 | - 95% system, 5% user for long TCP connections or large HTTP objects |
| 642 | - 85% system and 15% user for short TCP connections or small HTTP objects in |
| 643 | close mode |
| 644 | - 70% system and 30% user for small HTTP objects in keep-alive mode |
| 645 | |
| 646 | The amount of rules processing and regular expressions will increase the user |
| 647 | land part. The presence of firewall rules, connection tracking, complex routing |
| 648 | tables in the system will instead increase the system part. |
| 649 | |
| 650 | On most systems, the CPU time observed during network transfers can be cut in 4 |
| 651 | parts : |
| 652 | - the interrupt part, which concerns all the processing performed upon I/O |
| 653 | receipt, before the target process is even known. Typically Rx packets are |
| 654 | accounted for in interrupt. On some systems such as Linux where interrupt |
| 655 | processing may be deferred to a dedicated thread, it can appear as softirq, |
| 656 | and the thread is called ksoftirqd/0 (for CPU 0). The CPU taking care of |
| 657 | this load is generally defined by the hardware settings, though in the case |
| 658 | of softirq it is often possible to remap the processing to another CPU. |
| 659 | This interrupt part will often be perceived as parasitic since it's not |
| 660 | associated with any process, but it actually is some processing being done |
| 661 | to prepare the work for the process. |
| 662 | |
| 663 | - the system part, which concerns all the processing done using kernel code |
| 664 | called from userland. System calls are accounted as system for example. All |
| 665 | synchronously delivered Tx packets will be accounted for as system time. If |
| 666 | some packets have to be deferred due to queues filling up, they may then be |
| 667 | processed in interrupt context later (eg: upon receipt of an ACK opening a |
| 668 | TCP window). |
| 669 | |
| 670 | - the user part, which exclusively runs application code in userland. HAProxy |
| 671 | runs exclusively in this part, though it makes heavy use of system calls. |
| 672 | Rules processing, regular expressions, compression, encryption all add to |
| 673 | the user portion of CPU consumption. |
| 674 | |
| 675 | - the idle part, which is what the CPU does when there is nothing to do. For |
| 676 | example HAProxy waits for an incoming connection, or waits for some data to |
| 677 | leave, meaning the system is waiting for an ACK from the client to push |
| 678 | these data. |
| 679 | |
| 680 | In practice regarding HAProxy's activity, it is in general reasonably accurate |
| 681 | (but totally inexact) to consider that interrupt/softirq are caused by Rx |
| 682 | processing in kernel drivers, that user-land is caused by layer 7 processing |
| 683 | in HAProxy, and that system time is caused by network processing on the Tx |
| 684 | path. |
| 685 | |
| 686 | Since HAProxy runs around an event loop, it waits for new events using poll() |
| 687 | (or any alternative) and processes all these events as fast as possible before |
| 688 | going back to poll() waiting for new events. It measures the time spent waiting |
| 689 | in poll() compared to the time spent doing processing events. The ratio of |
| 690 | polling time vs total time is called the "idle" time, it's the amount of time |
| 691 | spent waiting for something to happen. This ratio is reported in the stats page |
| 692 | on the "idle" line, or "Idle_pct" on the CLI. When it's close to 100%, it means |
| 693 | the load is extremely low. When it's close to 0%, it means that there is |
| 694 | constantly some activity. While it cannot be very accurate on an overloaded |
| 695 | system due to other processes possibly preempting the CPU from the haproxy |
| 696 | process, it still provides a good estimate about how HAProxy considers it is |
| 697 | working : if the load is low and the idle ratio is low as well, it may indicate |
| 698 | that HAProxy has a lot of work to do, possibly due to very expensive rules that |
| 699 | have to be processed. Conversely, if HAProxy indicates the idle is close to |
| 700 | 100% while things are slow, it means that it cannot do anything to speed things |
| 701 | up because it is already waiting for incoming data to process. In the example |
| 702 | below, haproxy is completely idle : |
| 703 | |
| 704 | $ echo "show info" | socat - /var/run/haproxy.sock | grep ^Idle |
| 705 | Idle_pct: 100 |
| 706 | |
| 707 | When the idle ratio starts to become very low, it is important to tune the |
| 708 | system and place processes and interrupts correctly to save the most possible |
| 709 | CPU resources for all tasks. If a firewall is present, it may be worth trying |
| 710 | to disable it or to tune it to ensure it is not responsible for a large part |
| 711 | of the performance limitation. It's worth noting that unloading a stateful |
| 712 | firewall generally reduces both the amount of interrupt/softirq and of system |
| 713 | usage since such firewalls act both on the Rx and the Tx paths. On Linux, |
| 714 | unloading the nf_conntrack and ip_conntrack modules will show whether there is |
| 715 | anything to gain. If so, then the module runs with default settings and you'll |
| 716 | have to figure how to tune it for better performance. In general this consists |
| 717 | in considerably increasing the hash table size. On FreeBSD, "pfctl -d" will |
| 718 | disable the "pf" firewall and its stateful engine at the same time. |
| 719 | |
| 720 | If it is observed that a lot of time is spent in interrupt/softirq, it is |
| 721 | important to ensure that they don't run on the same CPU. Most systems tend to |
| 722 | pin the tasks on the CPU where they receive the network traffic because for |
| 723 | certain workloads it improves things. But with heavily network-bound workloads |
| 724 | it is the opposite as the haproxy process will have to fight against its kernel |
| 725 | counterpart. Pinning haproxy to one CPU core and the interrupts to another one, |
| 726 | all sharing the same L3 cache tends to sensibly increase network performance |
| 727 | because in practice the amount of work for haproxy and the network stack are |
| 728 | quite close, so they can almost fill an entire CPU each. On Linux this is done |
| 729 | using taskset (for haproxy) or using cpu-map (from the haproxy config), and the |
| 730 | interrupts are assigned under /proc/irq. Many network interfaces support |
| 731 | multiple queues and multiple interrupts. In general it helps to spread them |
| 732 | across a small number of CPU cores provided they all share the same L3 cache. |
| 733 | Please always stop irq_balance which always does the worst possible thing on |
| 734 | such workloads. |
| 735 | |
| 736 | For CPU-bound workloads consisting in a lot of SSL traffic or a lot of |
| 737 | compression, it may be worth using multiple processes dedicated to certain |
| 738 | tasks, though there is no universal rule here and experimentation will have to |
| 739 | be performed. |
| 740 | |
| 741 | In order to increase the CPU capacity, it is possible to make HAProxy run as |
| 742 | several processes, using the "nbproc" directive in the global section. There |
| 743 | are some limitations though : |
| 744 | - health checks are run per process, so the target servers will get as many |
| 745 | checks as there are running processes ; |
| 746 | - maxconn values and queues are per-process so the correct value must be set |
| 747 | to avoid overloading the servers ; |
| 748 | - outgoing connections should avoid using port ranges to avoid conflicts |
| 749 | - stick-tables are per process and are not shared between processes ; |
| 750 | - each peers section may only run on a single process at a time ; |
| 751 | - the CLI operations will only act on a single process at a time. |
| 752 | |
| 753 | With this in mind, it appears that the easiest setup often consists in having |
| 754 | one first layer running on multiple processes and in charge for the heavy |
| 755 | processing, passing the traffic to a second layer running in a single process. |
| 756 | This mechanism is suited to SSL and compression which are the two CPU-heavy |
| 757 | features. Instances can easily be chained over UNIX sockets (which are cheaper |
| 758 | than TCP sockets and which do not waste ports), adn the proxy protocol which is |
| 759 | useful to pass client information to the next stage. When doing so, it is |
| 760 | generally a good idea to bind all the single-process tasks to process number 1 |
| 761 | and extra tasks to next processes, as this will make it easier to generate |
| 762 | similar configurations for different machines. |
| 763 | |
| 764 | On Linux versions 3.9 and above, running HAProxy in multi-process mode is much |
| 765 | more efficient when each process uses a distinct listening socket on the same |
| 766 | IP:port ; this will make the kernel evenly distribute the load across all |
| 767 | processes instead of waking them all up. Please check the "process" option of |
| 768 | the "bind" keyword lines in the configuration manual for more information. |
| 769 | |
| 770 | |
| 771 | 8. Logging |
| 772 | ---------- |
| 773 | |
| 774 | For logging, HAProxy always relies on a syslog server since it does not perform |
| 775 | any file-system access. The standard way of using it is to send logs over UDP |
| 776 | to the log server (by default on port 514). Very commonly this is configured to |
| 777 | 127.0.0.1 where the local syslog daemon is running, but it's also used over the |
| 778 | network to log to a central server. The central server provides additional |
| 779 | benefits especially in active-active scenarios where it is desirable to keep |
| 780 | the logs merged in arrival order. HAProxy may also make use of a UNIX socket to |
| 781 | send its logs to the local syslog daemon, but it is not recommended at all, |
| 782 | because if the syslog server is restarted while haproxy runs, the socket will |
| 783 | be replaced and new logs will be lost. Since HAProxy will be isolated inside a |
| 784 | chroot jail, it will not have the ability to reconnect to the new socket. It |
| 785 | has also been observed in field that the log buffers in use on UNIX sockets are |
| 786 | very small and lead to lost messages even at very light loads. But this can be |
| 787 | fine for testing however. |
| 788 | |
| 789 | It is recommended to add the following directive to the "global" section to |
| 790 | make HAProxy log to the local daemon using facility "local0" : |
| 791 | |
| 792 | log 127.0.0.1:514 local0 |
| 793 | |
| 794 | and then to add the following one to each "defaults" section or to each frontend |
| 795 | and backend section : |
| 796 | |
| 797 | log global |
| 798 | |
| 799 | This way, all logs will be centralized through the global definition of where |
| 800 | the log server is. |
| 801 | |
| 802 | Some syslog daemons do not listen to UDP traffic by default, so depending on |
| 803 | the daemon being used, the syntax to enable this will vary : |
| 804 | |
| 805 | - on sysklogd, you need to pass argument "-r" on the daemon's command line |
| 806 | so that it listens to a UDP socket for "remote" logs ; note that there is |
| 807 | no way to limit it to address 127.0.0.1 so it will also receive logs from |
| 808 | remote systems ; |
| 809 | |
| 810 | - on rsyslogd, the following lines must be added to the configuration file : |
| 811 | |
| 812 | $ModLoad imudp |
| 813 | $UDPServerAddress * |
| 814 | $UDPServerRun 514 |
| 815 | |
| 816 | - on syslog-ng, a new source can be created the following way, it then needs |
| 817 | to be added as a valid source in one of the "log" directives : |
| 818 | |
| 819 | source s_udp { |
| 820 | udp(ip(127.0.0.1) port(514)); |
| 821 | }; |
| 822 | |
| 823 | Please consult your syslog daemon's manual for more information. If no logs are |
| 824 | seen in the system's log files, please consider the following tests : |
| 825 | |
| 826 | - restart haproxy. Each frontend and backend logs one line indicating it's |
| 827 | starting. If these logs are received, it means logs are working. |
| 828 | |
| 829 | - run "strace -tt -s100 -etrace=sendmsg -p <haproxy's pid>" and perform some |
| 830 | activity that you expect to be logged. You should see the log messages |
| 831 | being sent using sendmsg() there. If they don't appear, restart using |
| 832 | strace on top of haproxy. If you still see no logs, it definitely means |
| 833 | that something is wrong in your configuration. |
| 834 | |
| 835 | - run tcpdump to watch for port 514, for example on the loopback interface if |
| 836 | the traffic is being sent locally : "tcpdump -As0 -ni lo port 514". If the |
| 837 | packets are seen there, it's the proof they're sent then the syslogd daemon |
| 838 | needs to be troubleshooted. |
| 839 | |
| 840 | While traffic logs are sent from the frontends (where the incoming connections |
| 841 | are accepted), backends also need to be able to send logs in order to report a |
| 842 | server state change consecutive to a health check. Please consult HAProxy's |
| 843 | configuration manual for more information regarding all possible log settings. |
| 844 | |
| 845 | It is convenient to chose a facility that is not used by other deamons. HAProxy |
| 846 | examples often suggest "local0" for traffic logs and "local1" for admin logs |
| 847 | because they're never seen in field. A single facility would be enough as well. |
| 848 | Having separate logs is convenient for log analysis, but it's also important to |
| 849 | remember that logs may sometimes convey confidential information, and as such |
| 850 | they must not be mixed with other logs that may accidently be handed out to |
| 851 | unauthorized people. |
| 852 | |
| 853 | For in-field troubleshooting without impacting the server's capacity too much, |
| 854 | it is recommended to make use of the "halog" utility provided with HAProxy. |
| 855 | This is sort of a grep-like utility designed to process HAProxy log files at |
| 856 | a very fast data rate. Typical figures range between 1 and 2 GB of logs per |
| 857 | second. It is capable of extracting only certain logs (eg: search for some |
| 858 | classes of HTTP status codes, connection termination status, search by response |
| 859 | time ranges, look for errors only), count lines, limit the output to a number |
| 860 | of lines, and perform some more advanced statistics such as sorting servers |
| 861 | by response time or error counts, sorting URLs by time or count, sorting client |
| 862 | addresses by access count, and so on. It is pretty convenient to quickly spot |
| 863 | anomalies such as a bot looping on the site, and block them. |
| 864 | |
| 865 | |
| 866 | 9. Statistics and monitoring |
| 867 | ---------------------------- |
| 868 | |
Willy Tarreau | 44aed90 | 2015-10-13 14:45:29 +0200 | [diff] [blame] | 869 | It is possible to query HAProxy about its status. The most commonly used |
| 870 | mechanism is the HTTP statistics page. This page also exposes an alternative |
| 871 | CSV output format for monitoring tools. The same format is provided on the |
| 872 | Unix socket. |
| 873 | |
| 874 | |
| 875 | 9.1. CSV format |
| 876 | --------------- |
| 877 | |
| 878 | The statistics may be consulted either from the unix socket or from the HTTP |
| 879 | page. Both means provide a CSV format whose fields follow. The first line |
| 880 | begins with a sharp ('#') and has one word per comma-delimited field which |
| 881 | represents the title of the column. All other lines starting at the second one |
| 882 | use a classical CSV format using a comma as the delimiter, and the double quote |
| 883 | ('"') as an optional text delimiter, but only if the enclosed text is ambiguous |
| 884 | (if it contains a quote or a comma). The double-quote character ('"') in the |
| 885 | text is doubled ('""'), which is the format that most tools recognize. Please |
| 886 | do not insert any column before these ones in order not to break tools which |
| 887 | use hard-coded column positions. |
| 888 | |
| 889 | In brackets after each field name are the types which may have a value for |
| 890 | that field. The types are L (Listeners), F (Frontends), B (Backends), and |
| 891 | S (Servers). |
| 892 | |
| 893 | 0. pxname [LFBS]: proxy name |
| 894 | 1. svname [LFBS]: service name (FRONTEND for frontend, BACKEND for backend, |
| 895 | any name for server/listener) |
| 896 | 2. qcur [..BS]: current queued requests. For the backend this reports the |
| 897 | number queued without a server assigned. |
| 898 | 3. qmax [..BS]: max value of qcur |
| 899 | 4. scur [LFBS]: current sessions |
| 900 | 5. smax [LFBS]: max sessions |
| 901 | 6. slim [LFBS]: configured session limit |
| 902 | 7. stot [LFBS]: cumulative number of connections |
| 903 | 8. bin [LFBS]: bytes in |
| 904 | 9. bout [LFBS]: bytes out |
| 905 | 10. dreq [LFB.]: requests denied because of security concerns. |
| 906 | - For tcp this is because of a matched tcp-request content rule. |
| 907 | - For http this is because of a matched http-request or tarpit rule. |
| 908 | 11. dresp [LFBS]: responses denied because of security concerns. |
| 909 | - For http this is because of a matched http-request rule, or |
| 910 | "option checkcache". |
| 911 | 12. ereq [LF..]: request errors. Some of the possible causes are: |
| 912 | - early termination from the client, before the request has been sent. |
| 913 | - read error from the client |
| 914 | - client timeout |
| 915 | - client closed connection |
| 916 | - various bad requests from the client. |
| 917 | - request was tarpitted. |
| 918 | 13. econ [..BS]: number of requests that encountered an error trying to |
| 919 | connect to a backend server. The backend stat is the sum of the stat |
| 920 | for all servers of that backend, plus any connection errors not |
| 921 | associated with a particular server (such as the backend having no |
| 922 | active servers). |
| 923 | 14. eresp [..BS]: response errors. srv_abrt will be counted here also. |
| 924 | Some other errors are: |
| 925 | - write error on the client socket (won't be counted for the server stat) |
| 926 | - failure applying filters to the response. |
| 927 | 15. wretr [..BS]: number of times a connection to a server was retried. |
| 928 | 16. wredis [..BS]: number of times a request was redispatched to another |
| 929 | server. The server value counts the number of times that server was |
| 930 | switched away from. |
| 931 | 17. status [LFBS]: status (UP/DOWN/NOLB/MAINT/MAINT(via)...) |
| 932 | 18. weight [..BS]: total weight (backend), server weight (server) |
| 933 | 19. act [..BS]: number of active servers (backend), server is active (server) |
| 934 | 20. bck [..BS]: number of backup servers (backend), server is backup (server) |
| 935 | 21. chkfail [...S]: number of failed checks. (Only counts checks failed when |
| 936 | the server is up.) |
| 937 | 22. chkdown [..BS]: number of UP->DOWN transitions. The backend counter counts |
| 938 | transitions to the whole backend being down, rather than the sum of the |
| 939 | counters for each server. |
| 940 | 23. lastchg [..BS]: number of seconds since the last UP<->DOWN transition |
| 941 | 24. downtime [..BS]: total downtime (in seconds). The value for the backend |
| 942 | is the downtime for the whole backend, not the sum of the server downtime. |
| 943 | 25. qlimit [...S]: configured maxqueue for the server, or nothing in the |
| 944 | value is 0 (default, meaning no limit) |
| 945 | 26. pid [LFBS]: process id (0 for first instance, 1 for second, ...) |
| 946 | 27. iid [LFBS]: unique proxy id |
| 947 | 28. sid [L..S]: server id (unique inside a proxy) |
| 948 | 29. throttle [...S]: current throttle percentage for the server, when |
| 949 | slowstart is active, or no value if not in slowstart. |
| 950 | 30. lbtot [..BS]: total number of times a server was selected, either for new |
| 951 | sessions, or when re-dispatching. The server counter is the number |
| 952 | of times that server was selected. |
| 953 | 31. tracked [...S]: id of proxy/server if tracking is enabled. |
| 954 | 32. type [LFBS]: (0=frontend, 1=backend, 2=server, 3=socket/listener) |
| 955 | 33. rate [.FBS]: number of sessions per second over last elapsed second |
| 956 | 34. rate_lim [.F..]: configured limit on new sessions per second |
| 957 | 35. rate_max [.FBS]: max number of new sessions per second |
| 958 | 36. check_status [...S]: status of last health check, one of: |
| 959 | UNK -> unknown |
| 960 | INI -> initializing |
| 961 | SOCKERR -> socket error |
| 962 | L4OK -> check passed on layer 4, no upper layers testing enabled |
| 963 | L4TOUT -> layer 1-4 timeout |
| 964 | L4CON -> layer 1-4 connection problem, for example |
| 965 | "Connection refused" (tcp rst) or "No route to host" (icmp) |
| 966 | L6OK -> check passed on layer 6 |
| 967 | L6TOUT -> layer 6 (SSL) timeout |
| 968 | L6RSP -> layer 6 invalid response - protocol error |
| 969 | L7OK -> check passed on layer 7 |
| 970 | L7OKC -> check conditionally passed on layer 7, for example 404 with |
| 971 | disable-on-404 |
| 972 | L7TOUT -> layer 7 (HTTP/SMTP) timeout |
| 973 | L7RSP -> layer 7 invalid response - protocol error |
| 974 | L7STS -> layer 7 response error, for example HTTP 5xx |
| 975 | 37. check_code [...S]: layer5-7 code, if available |
| 976 | 38. check_duration [...S]: time in ms took to finish last health check |
| 977 | 39. hrsp_1xx [.FBS]: http responses with 1xx code |
| 978 | 40. hrsp_2xx [.FBS]: http responses with 2xx code |
| 979 | 41. hrsp_3xx [.FBS]: http responses with 3xx code |
| 980 | 42. hrsp_4xx [.FBS]: http responses with 4xx code |
| 981 | 43. hrsp_5xx [.FBS]: http responses with 5xx code |
| 982 | 44. hrsp_other [.FBS]: http responses with other codes (protocol error) |
| 983 | 45. hanafail [...S]: failed health checks details |
| 984 | 46. req_rate [.F..]: HTTP requests per second over last elapsed second |
| 985 | 47. req_rate_max [.F..]: max number of HTTP requests per second observed |
| 986 | 48. req_tot [.F..]: total number of HTTP requests received |
| 987 | 49. cli_abrt [..BS]: number of data transfers aborted by the client |
| 988 | 50. srv_abrt [..BS]: number of data transfers aborted by the server |
| 989 | (inc. in eresp) |
| 990 | 51. comp_in [.FB.]: number of HTTP response bytes fed to the compressor |
| 991 | 52. comp_out [.FB.]: number of HTTP response bytes emitted by the compressor |
| 992 | 53. comp_byp [.FB.]: number of bytes that bypassed the HTTP compressor |
| 993 | (CPU/BW limit) |
| 994 | 54. comp_rsp [.FB.]: number of HTTP responses that were compressed |
| 995 | 55. lastsess [..BS]: number of seconds since last session assigned to |
| 996 | server/backend |
| 997 | 56. last_chk [...S]: last health check contents or textual error |
| 998 | 57. last_agt [...S]: last agent check contents or textual error |
| 999 | 58. qtime [..BS]: the average queue time in ms over the 1024 last requests |
| 1000 | 59. ctime [..BS]: the average connect time in ms over the 1024 last requests |
| 1001 | 60. rtime [..BS]: the average response time in ms over the 1024 last requests |
| 1002 | (0 for TCP) |
| 1003 | 61. ttime [..BS]: the average total session time in ms over the 1024 last |
| 1004 | requests |
| 1005 | |
| 1006 | |
| 1007 | 9.2. Unix Socket commands |
| 1008 | ------------------------- |
| 1009 | |
| 1010 | The stats socket is not enabled by default. In order to enable it, it is |
| 1011 | necessary to add one line in the global section of the haproxy configuration. |
| 1012 | A second line is recommended to set a larger timeout, always appreciated when |
| 1013 | issuing commands by hand : |
| 1014 | |
| 1015 | global |
| 1016 | stats socket /var/run/haproxy.sock mode 600 level admin |
| 1017 | stats timeout 2m |
| 1018 | |
| 1019 | It is also possible to add multiple instances of the stats socket by repeating |
| 1020 | the line, and make them listen to a TCP port instead of a UNIX socket. This is |
| 1021 | never done by default because this is dangerous, but can be handy in some |
| 1022 | situations : |
| 1023 | |
| 1024 | global |
| 1025 | stats socket /var/run/haproxy.sock mode 600 level admin |
| 1026 | stats socket ipv4@192.168.0.1:9999 level admin |
| 1027 | stats timeout 2m |
| 1028 | |
| 1029 | To access the socket, an external utility such as "socat" is required. Socat is |
| 1030 | a swiss-army knife to connect anything to anything. We use it to connect |
| 1031 | terminals to the socket, or a couple of stdin/stdout pipes to it for scripts. |
| 1032 | The two main syntaxes we'll use are the following : |
| 1033 | |
| 1034 | # socat /var/run/haproxy.sock stdio |
| 1035 | # socat /var/run/haproxy.sock readline |
| 1036 | |
| 1037 | The first one is used with scripts. It is possible to send the output of a |
| 1038 | script to haproxy, and pass haproxy's output to another script. That's useful |
| 1039 | for retrieving counters or attack traces for example. |
| 1040 | |
| 1041 | The second one is only useful for issuing commands by hand. It has the benefit |
| 1042 | that the terminal is handled by the readline library which supports line |
| 1043 | editing and history, which is very convenient when issuing repeated commands |
| 1044 | (eg: watch a counter). |
| 1045 | |
| 1046 | The socket supports two operation modes : |
| 1047 | - interactive |
| 1048 | - non-interactive |
| 1049 | |
| 1050 | The non-interactive mode is the default when socat connects to the socket. In |
| 1051 | this mode, a single line may be sent. It is processed as a whole, responses are |
| 1052 | sent back, and the connection closes after the end of the response. This is the |
| 1053 | mode that scripts and monitoring tools use. It is possible to send multiple |
| 1054 | commands in this mode, they need to be delimited by a semi-colon (';'). For |
| 1055 | example : |
| 1056 | |
| 1057 | # echo "show info;show stat;show table" | socat /var/run/haproxy stdio |
| 1058 | |
| 1059 | The interactive mode displays a prompt ('>') and waits for commands to be |
| 1060 | entered on the line, then processes them, and displays the prompt again to wait |
| 1061 | for a new command. This mode is entered via the "prompt" command which must be |
| 1062 | sent on the first line in non-interactive mode. The mode is a flip switch, if |
| 1063 | "prompt" is sent in interactive mode, it is disabled and the connection closes |
| 1064 | after processing the last command of the same line. |
| 1065 | |
| 1066 | For this reason, when debugging by hand, it's quite common to start with the |
| 1067 | "prompt" command : |
| 1068 | |
| 1069 | # socat /var/run/haproxy readline |
| 1070 | prompt |
| 1071 | > show info |
| 1072 | ... |
| 1073 | > |
| 1074 | |
| 1075 | Since multiple commands may be issued at once, haproxy uses the empty line as a |
| 1076 | delimiter to mark an end of output for each command, and takes care of ensuring |
| 1077 | that no command can emit an empty line on output. A script can thus easily |
| 1078 | parse the output even when multiple commands were pipelined on a single line. |
| 1079 | |
| 1080 | It is important to understand that when multiple haproxy processes are started |
| 1081 | on the same sockets, any process may pick up the request and will output its |
| 1082 | own stats. |
| 1083 | |
| 1084 | The list of commands currently supported on the stats socket is provided below. |
| 1085 | If an unknown command is sent, haproxy displays the usage message which reminds |
| 1086 | all supported commands. Some commands support a more complex syntax, generally |
| 1087 | it will explain what part of the command is invalid when this happens. |
| 1088 | |
| 1089 | add acl <acl> <pattern> |
| 1090 | Add an entry into the acl <acl>. <acl> is the #<id> or the <file> returned by |
| 1091 | "show acl". This command does not verify if the entry already exists. This |
| 1092 | command cannot be used if the reference <acl> is a file also used with a map. |
| 1093 | In this case, you must use the command "add map" in place of "add acl". |
| 1094 | |
| 1095 | add map <map> <key> <value> |
| 1096 | Add an entry into the map <map> to associate the value <value> to the key |
| 1097 | <key>. This command does not verify if the entry already exists. It is |
| 1098 | mainly used to fill a map after a clear operation. Note that if the reference |
| 1099 | <map> is a file and is shared with a map, this map will contain also a new |
| 1100 | pattern entry. |
| 1101 | |
| 1102 | clear counters |
| 1103 | Clear the max values of the statistics counters in each proxy (frontend & |
| 1104 | backend) and in each server. The cumulated counters are not affected. This |
| 1105 | can be used to get clean counters after an incident, without having to |
| 1106 | restart nor to clear traffic counters. This command is restricted and can |
| 1107 | only be issued on sockets configured for levels "operator" or "admin". |
| 1108 | |
| 1109 | clear counters all |
| 1110 | Clear all statistics counters in each proxy (frontend & backend) and in each |
| 1111 | server. This has the same effect as restarting. This command is restricted |
| 1112 | and can only be issued on sockets configured for level "admin". |
| 1113 | |
| 1114 | clear acl <acl> |
| 1115 | Remove all entries from the acl <acl>. <acl> is the #<id> or the <file> |
| 1116 | returned by "show acl". Note that if the reference <acl> is a file and is |
| 1117 | shared with a map, this map will be also cleared. |
| 1118 | |
| 1119 | clear map <map> |
| 1120 | Remove all entries from the map <map>. <map> is the #<id> or the <file> |
| 1121 | returned by "show map". Note that if the reference <map> is a file and is |
| 1122 | shared with a acl, this acl will be also cleared. |
| 1123 | |
| 1124 | clear table <table> [ data.<type> <operator> <value> ] | [ key <key> ] |
| 1125 | Remove entries from the stick-table <table>. |
| 1126 | |
| 1127 | This is typically used to unblock some users complaining they have been |
| 1128 | abusively denied access to a service, but this can also be used to clear some |
| 1129 | stickiness entries matching a server that is going to be replaced (see "show |
| 1130 | table" below for details). Note that sometimes, removal of an entry will be |
| 1131 | refused because it is currently tracked by a session. Retrying a few seconds |
| 1132 | later after the session ends is usual enough. |
| 1133 | |
| 1134 | In the case where no options arguments are given all entries will be removed. |
| 1135 | |
| 1136 | When the "data." form is used entries matching a filter applied using the |
| 1137 | stored data (see "stick-table" in section 4.2) are removed. A stored data |
| 1138 | type must be specified in <type>, and this data type must be stored in the |
| 1139 | table otherwise an error is reported. The data is compared according to |
| 1140 | <operator> with the 64-bit integer <value>. Operators are the same as with |
| 1141 | the ACLs : |
| 1142 | |
| 1143 | - eq : match entries whose data is equal to this value |
| 1144 | - ne : match entries whose data is not equal to this value |
| 1145 | - le : match entries whose data is less than or equal to this value |
| 1146 | - ge : match entries whose data is greater than or equal to this value |
| 1147 | - lt : match entries whose data is less than this value |
| 1148 | - gt : match entries whose data is greater than this value |
| 1149 | |
| 1150 | When the key form is used the entry <key> is removed. The key must be of the |
| 1151 | same type as the table, which currently is limited to IPv4, IPv6, integer and |
| 1152 | string. |
| 1153 | |
| 1154 | Example : |
| 1155 | $ echo "show table http_proxy" | socat stdio /tmp/sock1 |
| 1156 | >>> # table: http_proxy, type: ip, size:204800, used:2 |
| 1157 | >>> 0x80e6a4c: key=127.0.0.1 use=0 exp=3594729 gpc0=0 conn_rate(30000)=1 \ |
| 1158 | bytes_out_rate(60000)=187 |
| 1159 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1160 | bytes_out_rate(60000)=191 |
| 1161 | |
| 1162 | $ echo "clear table http_proxy key 127.0.0.1" | socat stdio /tmp/sock1 |
| 1163 | |
| 1164 | $ echo "show table http_proxy" | socat stdio /tmp/sock1 |
| 1165 | >>> # table: http_proxy, type: ip, size:204800, used:1 |
| 1166 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1167 | bytes_out_rate(60000)=191 |
| 1168 | $ echo "clear table http_proxy data.gpc0 eq 1" | socat stdio /tmp/sock1 |
| 1169 | $ echo "show table http_proxy" | socat stdio /tmp/sock1 |
| 1170 | >>> # table: http_proxy, type: ip, size:204800, used:1 |
| 1171 | |
| 1172 | del acl <acl> [<key>|#<ref>] |
| 1173 | Delete all the acl entries from the acl <acl> corresponding to the key <key>. |
| 1174 | <acl> is the #<id> or the <file> returned by "show acl". If the <ref> is used, |
| 1175 | this command delete only the listed reference. The reference can be found with |
| 1176 | listing the content of the acl. Note that if the reference <acl> is a file and |
| 1177 | is shared with a map, the entry will be also deleted in the map. |
| 1178 | |
| 1179 | del map <map> [<key>|#<ref>] |
| 1180 | Delete all the map entries from the map <map> corresponding to the key <key>. |
| 1181 | <map> is the #<id> or the <file> returned by "show map". If the <ref> is used, |
| 1182 | this command delete only the listed reference. The reference can be found with |
| 1183 | listing the content of the map. Note that if the reference <map> is a file and |
| 1184 | is shared with a acl, the entry will be also deleted in the map. |
| 1185 | |
| 1186 | disable agent <backend>/<server> |
| 1187 | Mark the auxiliary agent check as temporarily stopped. |
| 1188 | |
| 1189 | In the case where an agent check is being run as a auxiliary check, due |
| 1190 | to the agent-check parameter of a server directive, new checks are only |
| 1191 | initialised when the agent is in the enabled. Thus, disable agent will |
| 1192 | prevent any new agent checks from begin initiated until the agent |
| 1193 | re-enabled using enable agent. |
| 1194 | |
| 1195 | When an agent is disabled the processing of an auxiliary agent check that |
| 1196 | was initiated while the agent was set as enabled is as follows: All |
| 1197 | results that would alter the weight, specifically "drain" or a weight |
| 1198 | returned by the agent, are ignored. The processing of agent check is |
| 1199 | otherwise unchanged. |
| 1200 | |
| 1201 | The motivation for this feature is to allow the weight changing effects |
| 1202 | of the agent checks to be paused to allow the weight of a server to be |
| 1203 | configured using set weight without being overridden by the agent. |
| 1204 | |
| 1205 | This command is restricted and can only be issued on sockets configured for |
| 1206 | level "admin". |
| 1207 | |
| 1208 | disable frontend <frontend> |
| 1209 | Mark the frontend as temporarily stopped. This corresponds to the mode which |
| 1210 | is used during a soft restart : the frontend releases the port but can be |
| 1211 | enabled again if needed. This should be used with care as some non-Linux OSes |
| 1212 | are unable to enable it back. This is intended to be used in environments |
| 1213 | where stopping a proxy is not even imaginable but a misconfigured proxy must |
| 1214 | be fixed. That way it's possible to release the port and bind it into another |
| 1215 | process to restore operations. The frontend will appear with status "STOP" |
| 1216 | on the stats page. |
| 1217 | |
| 1218 | The frontend may be specified either by its name or by its numeric ID, |
| 1219 | prefixed with a sharp ('#'). |
| 1220 | |
| 1221 | This command is restricted and can only be issued on sockets configured for |
| 1222 | level "admin". |
| 1223 | |
| 1224 | disable health <backend>/<server> |
| 1225 | Mark the primary health check as temporarily stopped. This will disable |
| 1226 | sending of health checks, and the last health check result will be ignored. |
| 1227 | The server will be in unchecked state and considered UP unless an auxiliary |
| 1228 | agent check forces it down. |
| 1229 | |
| 1230 | This command is restricted and can only be issued on sockets configured for |
| 1231 | level "admin". |
| 1232 | |
| 1233 | disable server <backend>/<server> |
| 1234 | Mark the server DOWN for maintenance. In this mode, no more checks will be |
| 1235 | performed on the server until it leaves maintenance. |
| 1236 | If the server is tracked by other servers, those servers will be set to DOWN |
| 1237 | during the maintenance. |
| 1238 | |
| 1239 | In the statistics page, a server DOWN for maintenance will appear with a |
| 1240 | "MAINT" status, its tracking servers with the "MAINT(via)" one. |
| 1241 | |
| 1242 | Both the backend and the server may be specified either by their name or by |
| 1243 | their numeric ID, prefixed with a sharp ('#'). |
| 1244 | |
| 1245 | This command is restricted and can only be issued on sockets configured for |
| 1246 | level "admin". |
| 1247 | |
| 1248 | enable agent <backend>/<server> |
| 1249 | Resume auxiliary agent check that was temporarily stopped. |
| 1250 | |
| 1251 | See "disable agent" for details of the effect of temporarily starting |
| 1252 | and stopping an auxiliary agent. |
| 1253 | |
| 1254 | This command is restricted and can only be issued on sockets configured for |
| 1255 | level "admin". |
| 1256 | |
| 1257 | enable frontend <frontend> |
| 1258 | Resume a frontend which was temporarily stopped. It is possible that some of |
| 1259 | the listening ports won't be able to bind anymore (eg: if another process |
| 1260 | took them since the 'disable frontend' operation). If this happens, an error |
| 1261 | is displayed. Some operating systems might not be able to resume a frontend |
| 1262 | which was disabled. |
| 1263 | |
| 1264 | The frontend may be specified either by its name or by its numeric ID, |
| 1265 | prefixed with a sharp ('#'). |
| 1266 | |
| 1267 | This command is restricted and can only be issued on sockets configured for |
| 1268 | level "admin". |
| 1269 | |
| 1270 | enable health <backend>/<server> |
| 1271 | Resume a primary health check that was temporarily stopped. This will enable |
| 1272 | sending of health checks again. Please see "disable health" for details. |
| 1273 | |
| 1274 | This command is restricted and can only be issued on sockets configured for |
| 1275 | level "admin". |
| 1276 | |
| 1277 | enable server <backend>/<server> |
| 1278 | If the server was previously marked as DOWN for maintenance, this marks the |
| 1279 | server UP and checks are re-enabled. |
| 1280 | |
| 1281 | Both the backend and the server may be specified either by their name or by |
| 1282 | their numeric ID, prefixed with a sharp ('#'). |
| 1283 | |
| 1284 | This command is restricted and can only be issued on sockets configured for |
| 1285 | level "admin". |
| 1286 | |
| 1287 | get map <map> <value> |
| 1288 | get acl <acl> <value> |
| 1289 | Lookup the value <value> in the map <map> or in the ACL <acl>. <map> or <acl> |
| 1290 | are the #<id> or the <file> returned by "show map" or "show acl". This command |
| 1291 | returns all the matching patterns associated with this map. This is useful for |
| 1292 | debugging maps and ACLs. The output format is composed by one line par |
| 1293 | matching type. Each line is composed by space-delimited series of words. |
| 1294 | |
| 1295 | The first two words are: |
| 1296 | |
| 1297 | <match method>: The match method applied. It can be "found", "bool", |
| 1298 | "int", "ip", "bin", "len", "str", "beg", "sub", "dir", |
| 1299 | "dom", "end" or "reg". |
| 1300 | |
| 1301 | <match result>: The result. Can be "match" or "no-match". |
| 1302 | |
| 1303 | The following words are returned only if the pattern matches an entry. |
| 1304 | |
| 1305 | <index type>: "tree" or "list". The internal lookup algorithm. |
| 1306 | |
| 1307 | <case>: "case-insensitive" or "case-sensitive". The |
| 1308 | interpretation of the case. |
| 1309 | |
| 1310 | <entry matched>: match="<entry>". Return the matched pattern. It is |
| 1311 | useful with regular expressions. |
| 1312 | |
| 1313 | The two last word are used to show the returned value and its type. With the |
| 1314 | "acl" case, the pattern doesn't exist. |
| 1315 | |
| 1316 | return=nothing: No return because there are no "map". |
| 1317 | return="<value>": The value returned in the string format. |
| 1318 | return=cannot-display: The value cannot be converted as string. |
| 1319 | |
| 1320 | type="<type>": The type of the returned sample. |
| 1321 | |
| 1322 | get weight <backend>/<server> |
| 1323 | Report the current weight and the initial weight of server <server> in |
| 1324 | backend <backend> or an error if either doesn't exist. The initial weight is |
| 1325 | the one that appears in the configuration file. Both are normally equal |
| 1326 | unless the current weight has been changed. Both the backend and the server |
| 1327 | may be specified either by their name or by their numeric ID, prefixed with a |
| 1328 | sharp ('#'). |
| 1329 | |
| 1330 | help |
| 1331 | Print the list of known keywords and their basic usage. The same help screen |
| 1332 | is also displayed for unknown commands. |
| 1333 | |
| 1334 | prompt |
| 1335 | Toggle the prompt at the beginning of the line and enter or leave interactive |
| 1336 | mode. In interactive mode, the connection is not closed after a command |
| 1337 | completes. Instead, the prompt will appear again, indicating the user that |
| 1338 | the interpreter is waiting for a new command. The prompt consists in a right |
| 1339 | angle bracket followed by a space "> ". This mode is particularly convenient |
| 1340 | when one wants to periodically check information such as stats or errors. |
| 1341 | It is also a good idea to enter interactive mode before issuing a "help" |
| 1342 | command. |
| 1343 | |
| 1344 | quit |
| 1345 | Close the connection when in interactive mode. |
| 1346 | |
| 1347 | set map <map> [<key>|#<ref>] <value> |
| 1348 | Modify the value corresponding to each key <key> in a map <map>. <map> is the |
| 1349 | #<id> or <file> returned by "show map". If the <ref> is used in place of |
| 1350 | <key>, only the entry pointed by <ref> is changed. The new value is <value>. |
| 1351 | |
| 1352 | set maxconn frontend <frontend> <value> |
| 1353 | Dynamically change the specified frontend's maxconn setting. Any positive |
| 1354 | value is allowed including zero, but setting values larger than the global |
| 1355 | maxconn does not make much sense. If the limit is increased and connections |
| 1356 | were pending, they will immediately be accepted. If it is lowered to a value |
| 1357 | below the current number of connections, new connections acceptation will be |
| 1358 | delayed until the threshold is reached. The frontend might be specified by |
| 1359 | either its name or its numeric ID prefixed with a sharp ('#'). |
| 1360 | |
Andrew Hayworth | edb93a7 | 2015-10-27 21:46:25 +0000 | [diff] [blame] | 1361 | set maxconn server <backend/server> <value> |
| 1362 | Dynamically change the specified server's maxconn setting. Any positive |
| 1363 | value is allowed including zero, but setting values larger than the global |
| 1364 | maxconn does not make much sense. |
| 1365 | |
Willy Tarreau | 44aed90 | 2015-10-13 14:45:29 +0200 | [diff] [blame] | 1366 | set maxconn global <maxconn> |
| 1367 | Dynamically change the global maxconn setting within the range defined by the |
| 1368 | initial global maxconn setting. If it is increased and connections were |
| 1369 | pending, they will immediately be accepted. If it is lowered to a value below |
| 1370 | the current number of connections, new connections acceptation will be |
| 1371 | delayed until the threshold is reached. A value of zero restores the initial |
| 1372 | setting. |
| 1373 | |
| 1374 | set rate-limit connections global <value> |
| 1375 | Change the process-wide connection rate limit, which is set by the global |
| 1376 | 'maxconnrate' setting. A value of zero disables the limitation. This limit |
| 1377 | applies to all frontends and the change has an immediate effect. The value |
| 1378 | is passed in number of connections per second. |
| 1379 | |
| 1380 | set rate-limit http-compression global <value> |
| 1381 | Change the maximum input compression rate, which is set by the global |
| 1382 | 'maxcomprate' setting. A value of zero disables the limitation. The value is |
| 1383 | passed in number of kilobytes per second. The value is available in the "show |
| 1384 | info" on the line "CompressBpsRateLim" in bytes. |
| 1385 | |
| 1386 | set rate-limit sessions global <value> |
| 1387 | Change the process-wide session rate limit, which is set by the global |
| 1388 | 'maxsessrate' setting. A value of zero disables the limitation. This limit |
| 1389 | applies to all frontends and the change has an immediate effect. The value |
| 1390 | is passed in number of sessions per second. |
| 1391 | |
| 1392 | set rate-limit ssl-sessions global <value> |
| 1393 | Change the process-wide SSL session rate limit, which is set by the global |
| 1394 | 'maxsslrate' setting. A value of zero disables the limitation. This limit |
| 1395 | applies to all frontends and the change has an immediate effect. The value |
| 1396 | is passed in number of sessions per second sent to the SSL stack. It applies |
| 1397 | before the handshake in order to protect the stack against handshake abuses. |
| 1398 | |
| 1399 | set server <backend>/<server> addr <ip4 or ip6 address> |
| 1400 | Replace the current IP address of a server by the one provided. |
| 1401 | |
| 1402 | set server <backend>/<server> agent [ up | down ] |
| 1403 | Force a server's agent to a new state. This can be useful to immediately |
| 1404 | switch a server's state regardless of some slow agent checks for example. |
| 1405 | Note that the change is propagated to tracking servers if any. |
| 1406 | |
| 1407 | set server <backend>/<server> health [ up | stopping | down ] |
| 1408 | Force a server's health to a new state. This can be useful to immediately |
| 1409 | switch a server's state regardless of some slow health checks for example. |
| 1410 | Note that the change is propagated to tracking servers if any. |
| 1411 | |
| 1412 | set server <backend>/<server> state [ ready | drain | maint ] |
| 1413 | Force a server's administrative state to a new state. This can be useful to |
| 1414 | disable load balancing and/or any traffic to a server. Setting the state to |
| 1415 | "ready" puts the server in normal mode, and the command is the equivalent of |
| 1416 | the "enable server" command. Setting the state to "maint" disables any traffic |
| 1417 | to the server as well as any health checks. This is the equivalent of the |
| 1418 | "disable server" command. Setting the mode to "drain" only removes the server |
| 1419 | from load balancing but still allows it to be checked and to accept new |
| 1420 | persistent connections. Changes are propagated to tracking servers if any. |
| 1421 | |
| 1422 | set server <backend>/<server> weight <weight>[%] |
| 1423 | Change a server's weight to the value passed in argument. This is the exact |
| 1424 | equivalent of the "set weight" command below. |
| 1425 | |
| 1426 | set ssl ocsp-response <response> |
| 1427 | This command is used to update an OCSP Response for a certificate (see "crt" |
| 1428 | on "bind" lines). Same controls are performed as during the initial loading of |
| 1429 | the response. The <response> must be passed as a base64 encoded string of the |
| 1430 | DER encoded response from the OCSP server. |
| 1431 | |
| 1432 | Example: |
| 1433 | openssl ocsp -issuer issuer.pem -cert server.pem \ |
| 1434 | -host ocsp.issuer.com:80 -respout resp.der |
| 1435 | echo "set ssl ocsp-response $(base64 -w 10000 resp.der)" | \ |
| 1436 | socat stdio /var/run/haproxy.stat |
| 1437 | |
| 1438 | set ssl tls-key <id> <tlskey> |
| 1439 | Set the next TLS key for the <id> listener to <tlskey>. This key becomes the |
| 1440 | ultimate key, while the penultimate one is used for encryption (others just |
| 1441 | decrypt). The oldest TLS key present is overwritten. <id> is either a numeric |
| 1442 | #<id> or <file> returned by "show tls-keys". <tlskey> is a base64 encoded 48 |
| 1443 | bit TLS ticket key (ex. openssl rand -base64 48). |
| 1444 | |
| 1445 | set table <table> key <key> [data.<data_type> <value>]* |
| 1446 | Create or update a stick-table entry in the table. If the key is not present, |
| 1447 | an entry is inserted. See stick-table in section 4.2 to find all possible |
| 1448 | values for <data_type>. The most likely use consists in dynamically entering |
| 1449 | entries for source IP addresses, with a flag in gpc0 to dynamically block an |
| 1450 | IP address or affect its quality of service. It is possible to pass multiple |
| 1451 | data_types in a single call. |
| 1452 | |
| 1453 | set timeout cli <delay> |
| 1454 | Change the CLI interface timeout for current connection. This can be useful |
| 1455 | during long debugging sessions where the user needs to constantly inspect |
| 1456 | some indicators without being disconnected. The delay is passed in seconds. |
| 1457 | |
| 1458 | set weight <backend>/<server> <weight>[%] |
| 1459 | Change a server's weight to the value passed in argument. If the value ends |
| 1460 | with the '%' sign, then the new weight will be relative to the initially |
| 1461 | configured weight. Absolute weights are permitted between 0 and 256. |
| 1462 | Relative weights must be positive with the resulting absolute weight is |
| 1463 | capped at 256. Servers which are part of a farm running a static |
| 1464 | load-balancing algorithm have stricter limitations because the weight |
| 1465 | cannot change once set. Thus for these servers, the only accepted values |
| 1466 | are 0 and 100% (or 0 and the initial weight). Changes take effect |
| 1467 | immediately, though certain LB algorithms require a certain amount of |
| 1468 | requests to consider changes. A typical usage of this command is to |
| 1469 | disable a server during an update by setting its weight to zero, then to |
| 1470 | enable it again after the update by setting it back to 100%. This command |
| 1471 | is restricted and can only be issued on sockets configured for level |
| 1472 | "admin". Both the backend and the server may be specified either by their |
| 1473 | name or by their numeric ID, prefixed with a sharp ('#'). |
| 1474 | |
| 1475 | show errors [<iid>] |
| 1476 | Dump last known request and response errors collected by frontends and |
| 1477 | backends. If <iid> is specified, the limit the dump to errors concerning |
| 1478 | either frontend or backend whose ID is <iid>. This command is restricted |
| 1479 | and can only be issued on sockets configured for levels "operator" or |
| 1480 | "admin". |
| 1481 | |
| 1482 | The errors which may be collected are the last request and response errors |
| 1483 | caused by protocol violations, often due to invalid characters in header |
| 1484 | names. The report precisely indicates what exact character violated the |
| 1485 | protocol. Other important information such as the exact date the error was |
| 1486 | detected, frontend and backend names, the server name (when known), the |
| 1487 | internal session ID and the source address which has initiated the session |
| 1488 | are reported too. |
| 1489 | |
| 1490 | All characters are returned, and non-printable characters are encoded. The |
| 1491 | most common ones (\t = 9, \n = 10, \r = 13 and \e = 27) are encoded as one |
| 1492 | letter following a backslash. The backslash itself is encoded as '\\' to |
| 1493 | avoid confusion. Other non-printable characters are encoded '\xNN' where |
| 1494 | NN is the two-digits hexadecimal representation of the character's ASCII |
| 1495 | code. |
| 1496 | |
| 1497 | Lines are prefixed with the position of their first character, starting at 0 |
| 1498 | for the beginning of the buffer. At most one input line is printed per line, |
| 1499 | and large lines will be broken into multiple consecutive output lines so that |
| 1500 | the output never goes beyond 79 characters wide. It is easy to detect if a |
| 1501 | line was broken, because it will not end with '\n' and the next line's offset |
| 1502 | will be followed by a '+' sign, indicating it is a continuation of previous |
| 1503 | line. |
| 1504 | |
| 1505 | Example : |
| 1506 | $ echo "show errors" | socat stdio /tmp/sock1 |
| 1507 | >>> [04/Mar/2009:15:46:56.081] backend http-in (#2) : invalid response |
| 1508 | src 127.0.0.1, session #54, frontend fe-eth0 (#1), server s2 (#1) |
| 1509 | response length 213 bytes, error at position 23: |
| 1510 | |
| 1511 | 00000 HTTP/1.0 200 OK\r\n |
| 1512 | 00017 header/bizarre:blah\r\n |
| 1513 | 00038 Location: blah\r\n |
| 1514 | 00054 Long-line: this is a very long line which should b |
| 1515 | 00104+ e broken into multiple lines on the output buffer, |
| 1516 | 00154+ otherwise it would be too large to print in a ter |
| 1517 | 00204+ minal\r\n |
| 1518 | 00211 \r\n |
| 1519 | |
| 1520 | In the example above, we see that the backend "http-in" which has internal |
| 1521 | ID 2 has blocked an invalid response from its server s2 which has internal |
| 1522 | ID 1. The request was on session 54 initiated by source 127.0.0.1 and |
| 1523 | received by frontend fe-eth0 whose ID is 1. The total response length was |
| 1524 | 213 bytes when the error was detected, and the error was at byte 23. This |
| 1525 | is the slash ('/') in header name "header/bizarre", which is not a valid |
| 1526 | HTTP character for a header name. |
| 1527 | |
| 1528 | show backend |
| 1529 | Dump the list of backends available in the running process |
| 1530 | |
| 1531 | show info |
| 1532 | Dump info about haproxy status on current process. |
| 1533 | |
| 1534 | show map [<map>] |
| 1535 | Dump info about map converters. Without argument, the list of all available |
| 1536 | maps is returned. If a <map> is specified, its contents are dumped. <map> is |
| 1537 | the #<id> or <file>. The first column is a unique identifier. It can be used |
| 1538 | as reference for the operation "del map" and "set map". The second column is |
| 1539 | the pattern and the third column is the sample if available. The data returned |
| 1540 | are not directly a list of available maps, but are the list of all patterns |
| 1541 | composing any map. Many of these patterns can be shared with ACL. |
| 1542 | |
| 1543 | show acl [<acl>] |
| 1544 | Dump info about acl converters. Without argument, the list of all available |
| 1545 | acls is returned. If a <acl> is specified, its contents are dumped. <acl> if |
| 1546 | the #<id> or <file>. The dump format is the same than the map even for the |
| 1547 | sample value. The data returned are not a list of available ACL, but are the |
| 1548 | list of all patterns composing any ACL. Many of these patterns can be shared |
| 1549 | with maps. |
| 1550 | |
| 1551 | show pools |
| 1552 | Dump the status of internal memory pools. This is useful to track memory |
| 1553 | usage when suspecting a memory leak for example. It does exactly the same |
| 1554 | as the SIGQUIT when running in foreground except that it does not flush |
| 1555 | the pools. |
| 1556 | |
| 1557 | show servers state [<backend>] |
| 1558 | Dump the state of the servers found in the running configuration. A backend |
| 1559 | name or identifier may be provided to limit the output to this backend only. |
| 1560 | |
| 1561 | The dump has the following format: |
| 1562 | - first line contains the format version (1 in this specification); |
| 1563 | - second line contains the column headers, prefixed by a sharp ('#'); |
| 1564 | - third line and next ones contain data; |
| 1565 | - each line starting by a sharp ('#') is considered as a comment. |
| 1566 | |
| 1567 | Since multiple versions of the ouptput may co-exist, below is the list of |
| 1568 | fields and their order per file format version : |
| 1569 | 1: |
| 1570 | be_id: Backend unique id. |
| 1571 | be_name: Backend label. |
| 1572 | srv_id: Server unique id (in the backend). |
| 1573 | srv_name: Server label. |
| 1574 | srv_addr: Server IP address. |
| 1575 | srv_op_state: Server operational state (UP/DOWN/...). |
| 1576 | In source code: SRV_ST_*. |
| 1577 | srv_admin_state: Server administrative state (MAINT/DRAIN/...). |
| 1578 | In source code: SRV_ADMF_*. |
| 1579 | srv_uweight: User visible server's weight. |
| 1580 | srv_iweight: Server's initial weight. |
| 1581 | srv_time_since_last_change: Time since last operational change. |
| 1582 | srv_check_status: Last health check status. |
| 1583 | srv_check_result: Last check result (FAILED/PASSED/...). |
| 1584 | In source code: CHK_RES_*. |
| 1585 | srv_check_health: Checks rise / fall current counter. |
| 1586 | srv_check_state: State of the check (ENABLED/PAUSED/...). |
| 1587 | In source code: CHK_ST_*. |
| 1588 | srv_agent_state: State of the agent check (ENABLED/PAUSED/...). |
| 1589 | In source code: CHK_ST_*. |
| 1590 | bk_f_forced_id: Flag to know if the backend ID is forced by |
| 1591 | configuration. |
| 1592 | srv_f_forced_id: Flag to know if the server's ID is forced by |
| 1593 | configuration. |
| 1594 | |
| 1595 | show sess |
| 1596 | Dump all known sessions. Avoid doing this on slow connections as this can |
| 1597 | be huge. This command is restricted and can only be issued on sockets |
| 1598 | configured for levels "operator" or "admin". |
| 1599 | |
| 1600 | show sess <id> |
| 1601 | Display a lot of internal information about the specified session identifier. |
| 1602 | This identifier is the first field at the beginning of the lines in the dumps |
| 1603 | of "show sess" (it corresponds to the session pointer). Those information are |
| 1604 | useless to most users but may be used by haproxy developers to troubleshoot a |
| 1605 | complex bug. The output format is intentionally not documented so that it can |
| 1606 | freely evolve depending on demands. You may find a description of all fields |
| 1607 | returned in src/dumpstats.c |
| 1608 | |
| 1609 | The special id "all" dumps the states of all sessions, which must be avoided |
| 1610 | as much as possible as it is highly CPU intensive and can take a lot of time. |
| 1611 | |
| 1612 | show stat [<iid> <type> <sid>] |
| 1613 | Dump statistics in the CSV format. By passing <id>, <type> and <sid>, it is |
| 1614 | possible to dump only selected items : |
| 1615 | - <iid> is a proxy ID, -1 to dump everything |
| 1616 | - <type> selects the type of dumpable objects : 1 for frontends, 2 for |
| 1617 | backends, 4 for servers, -1 for everything. These values can be ORed, |
| 1618 | for example: |
| 1619 | 1 + 2 = 3 -> frontend + backend. |
| 1620 | 1 + 2 + 4 = 7 -> frontend + backend + server. |
| 1621 | - <sid> is a server ID, -1 to dump everything from the selected proxy. |
| 1622 | |
| 1623 | Example : |
| 1624 | $ echo "show info;show stat" | socat stdio unix-connect:/tmp/sock1 |
| 1625 | >>> Name: HAProxy |
| 1626 | Version: 1.4-dev2-49 |
| 1627 | Release_date: 2009/09/23 |
| 1628 | Nbproc: 1 |
| 1629 | Process_num: 1 |
| 1630 | (...) |
| 1631 | |
| 1632 | # pxname,svname,qcur,qmax,scur,smax,slim,stot,bin,bout,dreq, (...) |
| 1633 | stats,FRONTEND,,,0,0,1000,0,0,0,0,0,0,,,,,OPEN,,,,,,,,,1,1,0, (...) |
| 1634 | stats,BACKEND,0,0,0,0,1000,0,0,0,0,0,,0,0,0,0,UP,0,0,0,,0,250,(...) |
| 1635 | (...) |
| 1636 | www1,BACKEND,0,0,0,0,1000,0,0,0,0,0,,0,0,0,0,UP,1,1,0,,0,250, (...) |
| 1637 | |
| 1638 | $ |
| 1639 | |
| 1640 | Here, two commands have been issued at once. That way it's easy to find |
| 1641 | which process the stats apply to in multi-process mode. Notice the empty |
| 1642 | line after the information output which marks the end of the first block. |
| 1643 | A similar empty line appears at the end of the second block (stats) so that |
| 1644 | the reader knows the output has not been truncated. |
| 1645 | |
| 1646 | show stat resolvers [<resolvers section id>] |
| 1647 | Dump statistics for the given resolvers section, or all resolvers sections |
| 1648 | if no section is supplied. |
| 1649 | |
| 1650 | For each name server, the following counters are reported: |
| 1651 | sent: number of DNS requests sent to this server |
| 1652 | valid: number of DNS valid responses received from this server |
| 1653 | update: number of DNS responses used to update the server's IP address |
| 1654 | cname: number of CNAME responses |
| 1655 | cname_error: CNAME errors encountered with this server |
| 1656 | any_err: number of empty response (IE: server does not support ANY type) |
| 1657 | nx: non existent domain response received from this server |
| 1658 | timeout: how many time this server did not answer in time |
| 1659 | refused: number of requests refused by this server |
| 1660 | other: any other DNS errors |
| 1661 | invalid: invalid DNS response (from a protocol point of view) |
| 1662 | too_big: too big response |
| 1663 | outdated: number of response arrived too late (after an other name server) |
| 1664 | |
| 1665 | show table |
| 1666 | Dump general information on all known stick-tables. Their name is returned |
| 1667 | (the name of the proxy which holds them), their type (currently zero, always |
| 1668 | IP), their size in maximum possible number of entries, and the number of |
| 1669 | entries currently in use. |
| 1670 | |
| 1671 | Example : |
| 1672 | $ echo "show table" | socat stdio /tmp/sock1 |
| 1673 | >>> # table: front_pub, type: ip, size:204800, used:171454 |
| 1674 | >>> # table: back_rdp, type: ip, size:204800, used:0 |
| 1675 | |
| 1676 | show table <name> [ data.<type> <operator> <value> ] | [ key <key> ] |
| 1677 | Dump contents of stick-table <name>. In this mode, a first line of generic |
| 1678 | information about the table is reported as with "show table", then all |
| 1679 | entries are dumped. Since this can be quite heavy, it is possible to specify |
| 1680 | a filter in order to specify what entries to display. |
| 1681 | |
| 1682 | When the "data." form is used the filter applies to the stored data (see |
| 1683 | "stick-table" in section 4.2). A stored data type must be specified |
| 1684 | in <type>, and this data type must be stored in the table otherwise an |
| 1685 | error is reported. The data is compared according to <operator> with the |
| 1686 | 64-bit integer <value>. Operators are the same as with the ACLs : |
| 1687 | |
| 1688 | - eq : match entries whose data is equal to this value |
| 1689 | - ne : match entries whose data is not equal to this value |
| 1690 | - le : match entries whose data is less than or equal to this value |
| 1691 | - ge : match entries whose data is greater than or equal to this value |
| 1692 | - lt : match entries whose data is less than this value |
| 1693 | - gt : match entries whose data is greater than this value |
| 1694 | |
| 1695 | |
| 1696 | When the key form is used the entry <key> is shown. The key must be of the |
| 1697 | same type as the table, which currently is limited to IPv4, IPv6, integer, |
| 1698 | and string. |
| 1699 | |
| 1700 | Example : |
| 1701 | $ echo "show table http_proxy" | socat stdio /tmp/sock1 |
| 1702 | >>> # table: http_proxy, type: ip, size:204800, used:2 |
| 1703 | >>> 0x80e6a4c: key=127.0.0.1 use=0 exp=3594729 gpc0=0 conn_rate(30000)=1 \ |
| 1704 | bytes_out_rate(60000)=187 |
| 1705 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1706 | bytes_out_rate(60000)=191 |
| 1707 | |
| 1708 | $ echo "show table http_proxy data.gpc0 gt 0" | socat stdio /tmp/sock1 |
| 1709 | >>> # table: http_proxy, type: ip, size:204800, used:2 |
| 1710 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1711 | bytes_out_rate(60000)=191 |
| 1712 | |
| 1713 | $ echo "show table http_proxy data.conn_rate gt 5" | \ |
| 1714 | socat stdio /tmp/sock1 |
| 1715 | >>> # table: http_proxy, type: ip, size:204800, used:2 |
| 1716 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1717 | bytes_out_rate(60000)=191 |
| 1718 | |
| 1719 | $ echo "show table http_proxy key 127.0.0.2" | \ |
| 1720 | socat stdio /tmp/sock1 |
| 1721 | >>> # table: http_proxy, type: ip, size:204800, used:2 |
| 1722 | >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \ |
| 1723 | bytes_out_rate(60000)=191 |
| 1724 | |
| 1725 | When the data criterion applies to a dynamic value dependent on time such as |
| 1726 | a bytes rate, the value is dynamically computed during the evaluation of the |
| 1727 | entry in order to decide whether it has to be dumped or not. This means that |
| 1728 | such a filter could match for some time then not match anymore because as |
| 1729 | time goes, the average event rate drops. |
| 1730 | |
| 1731 | It is possible to use this to extract lists of IP addresses abusing the |
| 1732 | service, in order to monitor them or even blacklist them in a firewall. |
| 1733 | Example : |
| 1734 | $ echo "show table http_proxy data.gpc0 gt 0" \ |
| 1735 | | socat stdio /tmp/sock1 \ |
| 1736 | | fgrep 'key=' | cut -d' ' -f2 | cut -d= -f2 > abusers-ip.txt |
| 1737 | ( or | awk '/key/{ print a[split($2,a,"=")]; }' ) |
| 1738 | |
| 1739 | show tls-keys |
| 1740 | Dump all loaded TLS ticket keys. The TLS ticket key reference ID and the |
| 1741 | file from which the keys have been loaded is shown. Both of those can be |
| 1742 | used to update the TLS keys using "set ssl tls-key". |
| 1743 | |
| 1744 | shutdown frontend <frontend> |
| 1745 | Completely delete the specified frontend. All the ports it was bound to will |
| 1746 | be released. It will not be possible to enable the frontend anymore after |
| 1747 | this operation. This is intended to be used in environments where stopping a |
| 1748 | proxy is not even imaginable but a misconfigured proxy must be fixed. That |
| 1749 | way it's possible to release the port and bind it into another process to |
| 1750 | restore operations. The frontend will not appear at all on the stats page |
| 1751 | once it is terminated. |
| 1752 | |
| 1753 | The frontend may be specified either by its name or by its numeric ID, |
| 1754 | prefixed with a sharp ('#'). |
| 1755 | |
| 1756 | This command is restricted and can only be issued on sockets configured for |
| 1757 | level "admin". |
| 1758 | |
| 1759 | shutdown session <id> |
| 1760 | Immediately terminate the session matching the specified session identifier. |
| 1761 | This identifier is the first field at the beginning of the lines in the dumps |
| 1762 | of "show sess" (it corresponds to the session pointer). This can be used to |
| 1763 | terminate a long-running session without waiting for a timeout or when an |
| 1764 | endless transfer is ongoing. Such terminated sessions are reported with a 'K' |
| 1765 | flag in the logs. |
| 1766 | |
| 1767 | shutdown sessions server <backend>/<server> |
| 1768 | Immediately terminate all the sessions attached to the specified server. This |
| 1769 | can be used to terminate long-running sessions after a server is put into |
| 1770 | maintenance mode, for instance. Such terminated sessions are reported with a |
| 1771 | 'K' flag in the logs. |
| 1772 | |
Willy Tarreau | 2212e6a | 2015-10-13 14:40:55 +0200 | [diff] [blame] | 1773 | |
| 1774 | 10. Tricks for easier configuration management |
| 1775 | ---------------------------------------------- |
| 1776 | |
| 1777 | It is very common that two HAProxy nodes constituting a cluster share exactly |
| 1778 | the same configuration modulo a few addresses. Instead of having to maintain a |
| 1779 | duplicate configuration for each node, which will inevitably diverge, it is |
| 1780 | possible to include environment variables in the configuration. Thus multiple |
| 1781 | configuration may share the exact same file with only a few different system |
| 1782 | wide environment variables. This started in version 1.5 where only addresses |
| 1783 | were allowed to include environment variables, and 1.6 goes further by |
| 1784 | supporting environment variables everywhere. The syntax is the same as in the |
| 1785 | UNIX shell, a variable starts with a dollar sign ('$'), followed by an opening |
| 1786 | curly brace ('{'), then the variable name followed by the closing brace ('}'). |
| 1787 | Except for addresses, environment variables are only interpreted in arguments |
| 1788 | surrounded with double quotes (this was necessary not to break existing setups |
| 1789 | using regular expressions involving the dollar symbol). |
| 1790 | |
| 1791 | Environment variables also make it convenient to write configurations which are |
| 1792 | expected to work on various sites where only the address changes. It can also |
| 1793 | permit to remove passwords from some configs. Example below where the the file |
| 1794 | "site1.env" file is sourced by the init script upon startup : |
| 1795 | |
| 1796 | $ cat site1.env |
| 1797 | LISTEN=192.168.1.1 |
| 1798 | CACHE_PFX=192.168.11 |
| 1799 | SERVER_PFX=192.168.22 |
| 1800 | LOGGER=192.168.33.1 |
| 1801 | STATSLP=admin:pa$$w0rd |
| 1802 | ABUSERS=/etc/haproxy/abuse.lst |
| 1803 | TIMEOUT=10s |
| 1804 | |
| 1805 | $ cat haproxy.cfg |
| 1806 | global |
| 1807 | log "${LOGGER}:514" local0 |
| 1808 | |
| 1809 | defaults |
| 1810 | mode http |
| 1811 | timeout client "${TIMEOUT}" |
| 1812 | timeout server "${TIMEOUT}" |
| 1813 | timeout connect 5s |
| 1814 | |
| 1815 | frontend public |
| 1816 | bind "${LISTEN}:80" |
| 1817 | http-request reject if { src -f "${ABUSERS}" } |
| 1818 | stats uri /stats |
| 1819 | stats auth "${STATSLP}" |
| 1820 | use_backend cache if { path_end .jpg .css .ico } |
| 1821 | default_backend server |
| 1822 | |
| 1823 | backend cache |
| 1824 | server cache1 "${CACHE_PFX}.1:18080" check |
| 1825 | server cache2 "${CACHE_PFX}.2:18080" check |
| 1826 | |
| 1827 | backend server |
| 1828 | server cache1 "${SERVER_PFX}.1:8080" check |
| 1829 | server cache2 "${SERVER_PFX}.2:8080" check |
| 1830 | |
| 1831 | |
| 1832 | 11. Well-known traps to avoid |
| 1833 | ----------------------------- |
| 1834 | |
| 1835 | Once in a while, someone reports that after a system reboot, the haproxy |
| 1836 | service wasn't started, and that once they start it by hand it works. Most |
| 1837 | often, these people are running a clustered IP address mechanism such as |
| 1838 | keepalived, to assign the service IP address to the master node only, and while |
| 1839 | it used to work when they used to bind haproxy to address 0.0.0.0, it stopped |
| 1840 | working after they bound it to the virtual IP address. What happens here is |
| 1841 | that when the service starts, the virtual IP address is not yet owned by the |
| 1842 | local node, so when HAProxy wants to bind to it, the system rejects this |
| 1843 | because it is not a local IP address. The fix doesn't consist in delaying the |
| 1844 | haproxy service startup (since it wouldn't stand a restart), but instead to |
| 1845 | properly configure the system to allow binding to non-local addresses. This is |
| 1846 | easily done on Linux by setting the net.ipv4.ip_nonlocal_bind sysctl to 1. This |
| 1847 | is also needed in order to transparently intercept the IP traffic that passes |
| 1848 | through HAProxy for a specific target address. |
| 1849 | |
| 1850 | Multi-process configurations involving source port ranges may apparently seem |
| 1851 | to work but they will cause some random failures under high loads because more |
| 1852 | than one process may try to use the same source port to connect to the same |
| 1853 | server, which is not possible. The system will report an error and a retry will |
| 1854 | happen, picking another port. A high value in the "retries" parameter may hide |
| 1855 | the effect to a certain extent but this also comes with increased CPU usage and |
| 1856 | processing time. Logs will also report a certain number of retries. For this |
| 1857 | reason, port ranges should be avoided in multi-process configurations. |
| 1858 | |
| 1859 | Since HAProxy uses SO_REUSEPORT and supports having multiple independant |
| 1860 | processes bound to the same IP:port, during troubleshooting it can happen that |
| 1861 | an old process was not stopped before a new one was started. This provides |
| 1862 | absurd test results which tend to indicate that any change to the configuration |
| 1863 | is ignored. The reason is that in fact even the new process is restarted with a |
| 1864 | new configuration, the old one also gets some incoming connections and |
| 1865 | processes them, returning unexpected results. When in doubt, just stop the new |
| 1866 | process and try again. If it still works, it very likely means that an old |
| 1867 | process remains alive and has to be stopped. Linux's "netstat -lntp" is of good |
| 1868 | help here. |
| 1869 | |
| 1870 | When adding entries to an ACL from the command line (eg: when blacklisting a |
| 1871 | source address), it is important to keep in mind that these entries are not |
| 1872 | synchronized to the file and that if someone reloads the configuration, these |
| 1873 | updates will be lost. While this is often the desired effect (for blacklisting) |
| 1874 | it may not necessarily match expectations when the change was made as a fix for |
| 1875 | a problem. See the "add acl" action of the CLI interface. |
| 1876 | |
| 1877 | |
| 1878 | 12. Debugging and performance issues |
| 1879 | ------------------------------------ |
| 1880 | |
| 1881 | When HAProxy is started with the "-d" option, it will stay in the foreground |
| 1882 | and will print one line per event, such as an incoming connection, the end of a |
| 1883 | connection, and for each request or response header line seen. This debug |
| 1884 | output is emitted before the contents are processed, so they don't consider the |
| 1885 | local modifications. The main use is to show the request and response without |
| 1886 | having to run a network sniffer. The output is less readable when multiple |
| 1887 | connections are handled in parallel, though the "debug2ansi" and "debug2html" |
| 1888 | scripts found in the examples/ directory definitely help here by coloring the |
| 1889 | output. |
| 1890 | |
| 1891 | If a request or response is rejected because HAProxy finds it is malformed, the |
| 1892 | best thing to do is to connect to the CLI and issue "show errors", which will |
| 1893 | report the last captured faulty request and response for each frontend and |
| 1894 | backend, with all the necessary information to indicate precisely the first |
| 1895 | character of the input stream that was rejected. This is sometimes needed to |
| 1896 | prove to customers or to developers that a bug is present in their code. In |
| 1897 | this case it is often possible to relax the checks (but still keep the |
| 1898 | captures) using "option accept-invalid-http-request" or its equivalent for |
| 1899 | responses coming from the server "option accept-invalid-http-response". Please |
| 1900 | see the configuration manual for more details. |
| 1901 | |
| 1902 | Example : |
| 1903 | |
| 1904 | > show errors |
| 1905 | Total events captured on [13/Oct/2015:13:43:47.169] : 1 |
| 1906 | |
| 1907 | [13/Oct/2015:13:43:40.918] frontend HAProxyLocalStats (#2): invalid request |
| 1908 | backend <NONE> (#-1), server <NONE> (#-1), event #0 |
| 1909 | src 127.0.0.1:51981, session #0, session flags 0x00000080 |
| 1910 | HTTP msg state 26, msg flags 0x00000000, tx flags 0x00000000 |
| 1911 | HTTP chunk len 0 bytes, HTTP body len 0 bytes |
| 1912 | buffer flags 0x00808002, out 0 bytes, total 31 bytes |
| 1913 | pending 31 bytes, wrapping at 8040, error at position 13: |
| 1914 | |
| 1915 | 00000 GET /invalid request HTTP/1.1\r\n |
| 1916 | |
| 1917 | |
| 1918 | The output of "show info" on the CLI provides a number of useful information |
| 1919 | regarding the maximum connection rate ever reached, maximum SSL key rate ever |
| 1920 | reached, and in general all information which can help to explain temporary |
| 1921 | issues regarding CPU or memory usage. Example : |
| 1922 | |
| 1923 | > show info |
| 1924 | Name: HAProxy |
| 1925 | Version: 1.6-dev7-e32d18-17 |
| 1926 | Release_date: 2015/10/12 |
| 1927 | Nbproc: 1 |
| 1928 | Process_num: 1 |
| 1929 | Pid: 7949 |
| 1930 | Uptime: 0d 0h02m39s |
| 1931 | Uptime_sec: 159 |
| 1932 | Memmax_MB: 0 |
| 1933 | Ulimit-n: 120032 |
| 1934 | Maxsock: 120032 |
| 1935 | Maxconn: 60000 |
| 1936 | Hard_maxconn: 60000 |
| 1937 | CurrConns: 0 |
| 1938 | CumConns: 3 |
| 1939 | CumReq: 3 |
| 1940 | MaxSslConns: 0 |
| 1941 | CurrSslConns: 0 |
| 1942 | CumSslConns: 0 |
| 1943 | Maxpipes: 0 |
| 1944 | PipesUsed: 0 |
| 1945 | PipesFree: 0 |
| 1946 | ConnRate: 0 |
| 1947 | ConnRateLimit: 0 |
| 1948 | MaxConnRate: 1 |
| 1949 | SessRate: 0 |
| 1950 | SessRateLimit: 0 |
| 1951 | MaxSessRate: 1 |
| 1952 | SslRate: 0 |
| 1953 | SslRateLimit: 0 |
| 1954 | MaxSslRate: 0 |
| 1955 | SslFrontendKeyRate: 0 |
| 1956 | SslFrontendMaxKeyRate: 0 |
| 1957 | SslFrontendSessionReuse_pct: 0 |
| 1958 | SslBackendKeyRate: 0 |
| 1959 | SslBackendMaxKeyRate: 0 |
| 1960 | SslCacheLookups: 0 |
| 1961 | SslCacheMisses: 0 |
| 1962 | CompressBpsIn: 0 |
| 1963 | CompressBpsOut: 0 |
| 1964 | CompressBpsRateLim: 0 |
| 1965 | ZlibMemUsage: 0 |
| 1966 | MaxZlibMemUsage: 0 |
| 1967 | Tasks: 5 |
| 1968 | Run_queue: 1 |
| 1969 | Idle_pct: 100 |
| 1970 | node: wtap |
| 1971 | description: |
| 1972 | |
| 1973 | When an issue seems to randomly appear on a new version of HAProxy (eg: every |
| 1974 | second request is aborted, occasional crash, etc), it is worth trying to enable |
| 1975 | memory poisonning so that each call to malloc() is immediately followed by the |
| 1976 | filling of the memory area with a configurable byte. By default this byte is |
| 1977 | 0x50 (ASCII for 'P'), but any other byte can be used, including zero (which |
| 1978 | will have the same effect as a calloc() and which may make issues disappear). |
| 1979 | Memory poisonning is enabled on the command line using the "-dM" option. It |
| 1980 | slightly hurts performance and is not recommended for use in production. If |
| 1981 | an issue happens all the time with it or never happens when poisoonning uses |
| 1982 | byte zero, it clearly means you've found a bug and you definitely need to |
| 1983 | report it. Otherwise if there's no clear change, the problem it is not related. |
| 1984 | |
| 1985 | When debugging some latency issues, it is important to use both strace and |
| 1986 | tcpdump on the local machine, and another tcpdump on the remote system. The |
| 1987 | reason for this is that there are delays everywhere in the processing chain and |
| 1988 | it is important to know which one is causing latency to know where to act. In |
| 1989 | practice, the local tcpdump will indicate when the input data come in. Strace |
| 1990 | will indicate when haproxy receives these data (using recv/recvfrom). Warning, |
| 1991 | openssl uses read()/write() syscalls instead of recv()/send(). Strace will also |
| 1992 | show when haproxy sends the data, and tcpdump will show when the system sends |
| 1993 | these data to the interface. Then the external tcpdump will show when the data |
| 1994 | sent are really received (since the local one only shows when the packets are |
| 1995 | queued). The benefit of sniffing on the local system is that strace and tcpdump |
| 1996 | will use the same reference clock. Strace should be used with "-tts200" to get |
| 1997 | complete timestamps and report large enough chunks of data to read them. |
| 1998 | Tcpdump should be used with "-nvvttSs0" to report full packets, real sequence |
| 1999 | numbers and complete timestamps. |
| 2000 | |
| 2001 | In practice, received data are almost always immediately received by haproxy |
| 2002 | (unless the machine has a saturated CPU or these data are invalid and not |
| 2003 | delivered). If these data are received but not sent, it generally is because |
| 2004 | the output buffer is saturated (ie: recipient doesn't consume the data fast |
| 2005 | enough). This can be confirmed by seeing that the polling doesn't notify of |
| 2006 | the ability to write on the output file descriptor for some time (it's often |
| 2007 | easier to spot in the strace output when the data finally leave and then roll |
| 2008 | back to see when the write event was notified). It generally matches an ACK |
| 2009 | received from the recipient, and detected by tcpdump. Once the data are sent, |
| 2010 | they may spend some time in the system doing nothing. Here again, the TCP |
| 2011 | congestion window may be limited and not allow these data to leave, waiting for |
| 2012 | an ACK to open the window. If the traffic is idle and the data take 40 ms or |
| 2013 | 200 ms to leave, it's a different issue (which is not an issue), it's the fact |
| 2014 | that the Nagle algorithm prevents empty packets from leaving immediately, in |
| 2015 | hope that they will be merged with subsequent data. HAProxy automatically |
| 2016 | disables Nagle in pure TCP mode and in tunnels. However it definitely remains |
| 2017 | enabled when forwarding an HTTP body (and this contributes to the performance |
| 2018 | improvement there by reducing the number of packets). Some HTTP non-compliant |
| 2019 | applications may be sensitive to the latency when delivering incomplete HTTP |
| 2020 | response messages. In this case you will have to enable "option http-no-delay" |
| 2021 | to disable Nagle in order to work around their design, keeping in mind that any |
| 2022 | other proxy in the chain may similarly be impacted. If tcpdump reports that data |
| 2023 | leave immediately but the other end doesn't see them quickly, it can mean there |
| 2024 | is a congestionned WAN link, a congestionned LAN with flow control enabled and |
| 2025 | preventing the data from leaving, or more commonly that HAProxy is in fact |
| 2026 | running in a virtual machine and that for whatever reason the hypervisor has |
| 2027 | decided that the data didn't need to be sent immediately. In virtualized |
| 2028 | environments, latency issues are almost always caused by the virtualization |
| 2029 | layer, so in order to save time, it's worth first comparing tcpdump in the VM |
| 2030 | and on the external components. Any difference has to be credited to the |
| 2031 | hypervisor and its accompanying drivers. |
| 2032 | |
| 2033 | When some TCP SACK segments are seen in tcpdump traces (using -vv), it always |
| 2034 | means that the side sending them has got the proof of a lost packet. While not |
| 2035 | seeing them doesn't mean there are no losses, seeing them definitely means the |
| 2036 | network is lossy. Losses are normal on a network, but at a rate where SACKs are |
| 2037 | not noticeable at the naked eye. If they appear a lot in the traces, it is |
| 2038 | worth investigating exactly what happens and where the packets are lost. HTTP |
| 2039 | doesn't cope well with TCP losses, which introduce huge latencies. |
| 2040 | |
| 2041 | The "netstat -i" command will report statistics per interface. An interface |
| 2042 | where the Rx-Ovr counter grows indicates that the system doesn't have enough |
| 2043 | resources to receive all incoming packets and that they're lost before being |
| 2044 | processed by the network driver. Rx-Drp indicates that some received packets |
| 2045 | were lost in the network stack because the application doesn't process them |
| 2046 | fast enough. This can happen during some attacks as well. Tx-Drp means that |
| 2047 | the output queues were full and packets had to be dropped. When using TCP it |
| 2048 | should be very rare, but will possibly indicte a saturated outgoing link. |
| 2049 | |
| 2050 | |
| 2051 | 13. Security considerations |
| 2052 | --------------------------- |
| 2053 | |
| 2054 | HAProxy is designed to run with very limited privileges. The standard way to |
| 2055 | use it is to isolate it into a chroot jail and to drop its privileges to a |
| 2056 | non-root user without any permissions inside this jail so that if any future |
| 2057 | vulnerability were to be discovered, its compromise would not affect the rest |
| 2058 | of the system. |
| 2059 | |
| 2060 | In order to perfom a chroot, it first needs to be started as a root user. It is |
| 2061 | pointless to build hand-made chroots to start the process there, these ones are |
| 2062 | painful to build, are never properly maintained and always contain way more |
| 2063 | bugs than the main file-system. And in case of compromise, the intruder can use |
| 2064 | the purposely built file-system. Unfortunately many administrators confuse |
| 2065 | "start as root" and "run as root", resulting in the uid change to be done prior |
| 2066 | to starting haproxy, and reducing the effective security restrictions. |
| 2067 | |
| 2068 | HAProxy will need to be started as root in order to : |
| 2069 | - adjust the file descriptor limits |
| 2070 | - bind to privileged port numbers |
| 2071 | - bind to a specific network interface |
| 2072 | - transparently listen to a foreign address |
| 2073 | - isolate itself inside the chroot jail |
| 2074 | - drop to another non-privileged UID |
| 2075 | |
| 2076 | HAProxy may require to be run as root in order to : |
| 2077 | - bind to an interface for outgoing connections |
| 2078 | - bind to privileged source ports for outgoing connections |
| 2079 | - transparently bind to a foreing address for outgoing connections |
| 2080 | |
| 2081 | Most users will never need the "run as root" case. But the "start as root" |
| 2082 | covers most usages. |
| 2083 | |
| 2084 | A safe configuration will have : |
| 2085 | |
| 2086 | - a chroot statement pointing to an empty location without any access |
| 2087 | permissions. This can be prepared this way on the UNIX command line : |
| 2088 | |
| 2089 | # mkdir /var/empty && chmod 0 /var/empty || echo "Failed" |
| 2090 | |
| 2091 | and referenced like this in the HAProxy configuration's global section : |
| 2092 | |
| 2093 | chroot /var/empty |
| 2094 | |
| 2095 | - both a uid/user and gid/group statements in the global section : |
| 2096 | |
| 2097 | user haproxy |
| 2098 | group haproxy |
| 2099 | |
| 2100 | - a stats socket whose mode, uid and gid are set to match the user and/or |
| 2101 | group allowed to access the CLI so that nobody may access it : |
| 2102 | |
| 2103 | stats socket /var/run/haproxy.stat uid hatop gid hatop mode 600 |
| 2104 | |