Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 1 | ---------------------- |
| 2 | HAProxy how-to |
| 3 | ---------------------- |
| 4 | version 1.4 |
| 5 | willy tarreau |
| 6 | 2010/05/09 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 7 | |
| 8 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 9 | 1) How to build it |
| 10 | ------------------ |
| 11 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 12 | To build haproxy, you will need : |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 13 | - GNU make. Neither Solaris nor OpenBSD's make work with the GNU Makefile. |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 14 | However, specific Makefiles for BSD and OSX are provided. |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 15 | - GCC between 2.91 and 4.5.0. Others may work, but not tested. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 16 | - GNU ld |
| 17 | |
| 18 | Also, you might want to build with libpcre support, which will provide a very |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 19 | efficient regex implementation and will also fix some badness on Solaris' one. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 20 | |
| 21 | To build haproxy, you have to choose your target OS amongst the following ones |
| 22 | and assign it to the TARGET variable : |
| 23 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 24 | - linux22 for Linux 2.2 |
| 25 | - linux24 for Linux 2.4 and above (default) |
| 26 | - linux24e for Linux 2.4 with support for a working epoll (> 0.21) |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 27 | - linux26 for Linux 2.6 and above |
| 28 | - solaris for Solaris 8 or 10 (others untested) |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 29 | - freebsd for FreeBSD 5 to 8.0 (others untested) |
| 30 | - openbsd for OpenBSD 3.1 to 4.6 (others untested) |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 31 | - cygwin for Cygwin |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 32 | - generic for any other OS. |
| 33 | - custom to manually adjust every setting |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 34 | |
| 35 | You may also choose your CPU to benefit from some optimizations. This is |
| 36 | particularly important on UltraSparc machines. For this, you can assign |
| 37 | one of the following choices to the CPU variable : |
| 38 | |
| 39 | - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon |
| 40 | - i586 for intel Pentium, AMD K6, VIA C3. |
| 41 | - ultrasparc : Sun UltraSparc I/II/III/IV processor |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 42 | - native : use the build machine's specific processor optimizations |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 43 | - generic : any other processor or no specific optimization. (default) |
| 44 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 45 | Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options |
| 46 | for your platform. |
| 47 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 48 | You may want to build specific target binaries which do not match your native |
| 49 | compiler's target. This is particularly true on 64-bit systems when you want |
| 50 | to build a 32-bit binary. Use the ARCH variable for this purpose. Right now |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 51 | it only knows about a few x86 variants (i386,i486,i586,i686,x86_64), two |
| 52 | generic ones (32,64) and sets -m32/-m64 as well as -march=<arch> accordingly. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 53 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 54 | If your system supports PCRE (Perl Compatible Regular Expressions), then you |
| 55 | really should build with libpcre which is between 2 and 10 times faster than |
| 56 | other libc implementations. Regex are used for header processing (deletion, |
| 57 | rewriting, allow, deny). The only inconvenient of libpcre is that it is not |
| 58 | yet widely spread, so if you build for other systems, you might get into |
| 59 | trouble if they don't have the dynamic library. In this situation, you should |
| 60 | statically link libpcre into haproxy so that it will not be necessary to |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 61 | install it on target systems. Available build options for PCRE are : |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 62 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 63 | - USE_PCRE=1 to use libpcre, in whatever form is available on your system |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 64 | (shared or static) |
| 65 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 66 | - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic |
| 67 | one is available. This will enhance portability. |
| 68 | |
| 69 | - with no option, use your OS libc's standard regex implemntation (default). |
| 70 | Warning! group references on Solaris seem broken. Use static-pcre whenever |
| 71 | possible. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 72 | |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 73 | Recent systems can resolve IPv6 host names using getaddrinfo(). This primitive |
| 74 | is not present in all libcs and does not work in all of them either. Support in |
| 75 | glibc was broken before 2.3. Some embedded libs may not properly work either, |
| 76 | thus, support is disabled by default, meaning that some host names which only |
| 77 | resolve as IPv6 addresses will not resolve and configs might emit an error |
| 78 | during parsing. If you know that your OS libc has reliable support for |
| 79 | getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command line to enable |
| 80 | it. This is the recommended option for most Linux distro packagers since it's |
| 81 | working fine on all recent mainstream distros. It is automatically enabled on |
| 82 | Solaris 8 and above, as it's known to work. |
| 83 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 84 | By default, the DEBUG variable is set to '-g' to enable debug symbols. It is |
| 85 | not wise to disable it on uncommon systems, because it's often the only way to |
| 86 | get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to |
| 87 | strip the binary. |
| 88 | |
| 89 | For example, I use this to build for Solaris 8 : |
| 90 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 91 | $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 92 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 93 | And I build it this way on OpenBSD or FreeBSD : |
willy tarreau | d38e72d | 2006-03-19 20:56:52 +0100 | [diff] [blame] | 94 | |
| 95 | $ make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu" |
| 96 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 97 | In order to build a 32-bit binary on an x86_64 Linux system : |
| 98 | |
| 99 | $ make TARGET=linux26 ARCH=i386 |
| 100 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 101 | If you need to pass other defines, includes, libraries, etc... then please |
| 102 | check the Makefile to see which ones will be available in your case, and |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 103 | use the USE_* variables in the GNU Makefile, or ADDINC, ADDLIB, and DEFINE |
| 104 | variables in the BSD makefiles. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 105 | |
Willy Tarreau | 97ec969 | 2010-01-28 20:52:05 +0100 | [diff] [blame] | 106 | AIX 5.3 is known to work with the generic target. However, for the binary to |
| 107 | also run on 5.2 or earlier, you need to build with DEFINE="-D_MSGQSUPPORT", |
| 108 | otherwise __fd_select() will be used while not being present in the libc. |
| 109 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 110 | |
| 111 | 2) How to install it |
| 112 | -------------------- |
| 113 | |
| 114 | To install haproxy, you can either copy the single resulting binary to the |
| 115 | place you want, or run : |
| 116 | |
| 117 | $ sudo make install |
| 118 | |
| 119 | If you're packaging it for another system, you can specify its root directory |
| 120 | in the usual DESTDIR variable. |
| 121 | |
| 122 | |
| 123 | 3) How to set it up |
| 124 | ------------------- |
| 125 | |
| 126 | There is some documentation in the doc/ directory : |
| 127 | |
| 128 | - architecture.txt : this is the architecture manual. It is quite old and |
| 129 | does not tell about the nice new features, but it's still a good starting |
| 130 | point when you know what you want but don't know how to do it. |
| 131 | |
| 132 | - configuration.txt : this is the configuration manual. It recalls a few |
| 133 | essential HTTP basic concepts, and details all the configuration file |
| 134 | syntax (keywords, units). It also describes the log and stats format. It |
| 135 | is normally always up to date. If you see that something is missing from |
| 136 | it, please report it as this is a bug. |
| 137 | |
| 138 | - haproxy-en.txt / haproxy-fr.txt : these are the old outdated docs. You |
| 139 | should never need them. If you do, then please report what you didn't |
| 140 | find in the other ones. |
| 141 | |
| 142 | - gpl.txt / lgpl.txt : the copy of the licenses covering the software. See |
| 143 | the 'LICENSE' file at the top for more information. |
| 144 | |
| 145 | - the rest is mainly for developers. |
| 146 | |
| 147 | There are also a number of nice configuration examples in the "examples" |
| 148 | directory as well as on several sites and articles on the net which are linked |
| 149 | to from the haproxy web site. |
| 150 | |
| 151 | |
| 152 | 4) How to report a bug |
| 153 | ---------------------- |
| 154 | |
| 155 | It is possible that from time to time you'll find a bug. A bug is a case where |
| 156 | what you see is not what is documented. Otherwise it can be a misdesign. If you |
| 157 | find that something is stupidly design, please discuss it on the list (see the |
| 158 | "how to contribute" section below). If you feel like you're proceeding right |
| 159 | and haproxy doesn't obey, then first ask yourself if it is possible that nobody |
| 160 | before you has even encountered this issue. If it's unlikely, the you probably |
| 161 | have an issue in your setup. Just in case of doubt, please consult the mailing |
| 162 | list archives : |
| 163 | |
| 164 | http://www.formilux.org/archives/haproxy/ |
| 165 | http://marc.info/?l=haproxy |
| 166 | |
| 167 | Otherwise, please try to gather the maximum amount of information to help |
| 168 | reproduce the issue and send that to the mailing list : |
| 169 | |
| 170 | haproxy@formilux.org |
| 171 | |
| 172 | Please include your configuration and logs. You can mask your IP addresses and |
| 173 | passwords, we don't need them. But it's essential that you post your config if |
| 174 | you want people to guess what is happening. |
| 175 | |
| 176 | Also, keep in mind that haproxy is designed to NEVER CRASH. If you see it die |
| 177 | without any reason, then it definitely is a critical bug that must be reported |
| 178 | and urgently fixed. It has happened a couple of times in the past, essentially |
| 179 | on development versions running on new architectures. If you think your setup |
| 180 | is fairly common, then it is possible that the issue is totally unrelated. |
| 181 | Anyway, if that happens, feel free to contact me directly, as I will give you |
| 182 | instructions on how to collect a usable core file, and will probably ask for |
| 183 | other captures that you'll not want to share with the list. |
| 184 | |
| 185 | |
| 186 | 5) How to contribute |
| 187 | -------------------- |
| 188 | |
| 189 | It is possible that you'll want to add a specific feature to satisfy your needs |
| 190 | or one of your customers'. Contributions are welcome, however I'm often very |
| 191 | picky about changes. I will generally reject patches that change massive parts |
| 192 | of the code, or that touch the core parts without any good reason if those |
| 193 | changes have not been discussed first. |
| 194 | |
| 195 | The proper place to discuss your changes is the HAProxy Mailing List. There are |
| 196 | enough skilled readers to catch hazardous mistakes and to suggest improvements. |
| 197 | You can subscribe to it by sending an empty e-mail at the following address : |
| 198 | |
| 199 | haproxy+subscribe@formilux.org |
| 200 | |
| 201 | If your work is very confidential and you can't publicly discuss it, you can |
| 202 | also mail me directly about it, but your mail may be waiting several days in |
| 203 | the queue before you get a response. |
| 204 | |
| 205 | If you'd like a feature to be added but you think you don't have the skills to |
| 206 | implement it yourself, you should follow these steps : |
| 207 | |
| 208 | 1. discuss the feature on the mailing list. It is possible that someone |
| 209 | else has already implemented it, or that someone will tell you how to |
| 210 | proceed without it, or even why not to do it. It is also possible that |
| 211 | in fact it's quite easy to implement and people will guide you through |
| 212 | the process. That way you'll finally have YOUR patch merged, providing |
| 213 | the feature YOU need. |
| 214 | |
| 215 | 2. if you really can't code it yourself after discussing it, then you may |
| 216 | consider contacting someone to do the job for you. Some people on the |
| 217 | list might be OK with trying to do it. Otherwise, you can check the list |
| 218 | of contributors at the URL below, some of the regular contributors may |
| 219 | be able to do the work, probably not for free but their time is as much |
| 220 | valuable as yours after all, you can't eat the cake and have it too. |
| 221 | |
| 222 | The list of past and regular contributors is available below. It lists not only |
| 223 | significant code contributions (features, fixes), but also time or money |
| 224 | donations : |
| 225 | |
| 226 | http://haproxy.1wt.eu/contrib.html |
| 227 | |
| 228 | Note to contributors: it's very handy when patches comes with a properly |
| 229 | formated subject. Try to put one of the following words between brackets |
| 230 | to indicate the importance of the patch followed if possible by a single |
| 231 | word indicating what subsystem is affected, then by a short description : |
| 232 | |
| 233 | [BUG] fix for a minor or medium-level bug. When a few of these ones are |
| 234 | available, a new maintenance release is emitted. |
| 235 | |
| 236 | [CRITICAL] medium-term reliability or security is at risk, an upgrade is |
| 237 | absolutely required. A maintenance release may be emitted even if |
| 238 | only one of these bugs are fixed. |
| 239 | |
| 240 | [CLEANUP] code cleanup, silence of warnings, etc... theorically no impact. |
| 241 | These patches will rarely be seen in stable branches, though they |
| 242 | may appear when they remove some annoyance. |
| 243 | |
| 244 | [MINOR] minor change, very low risk of impact. It is often the case for |
| 245 | code additions that don't touch live code. |
| 246 | |
| 247 | [MEDIUM] medium risk, may cause unexpected regressions of low importance or |
| 248 | which may quickly be discovered. |
| 249 | |
| 250 | [MAJOR] major risk of hidden regression. This happens when I rearrange |
| 251 | large parts of code, when I play with timeouts, with variable |
| 252 | initializations, etc... We should only exceptionally find such |
| 253 | patches in stable branches. |
| 254 | |
| 255 | [OPTIM] some code was optimised. Sometimes if the regression risk is very |
| 256 | low and the gains significant, such patches may be merged in the |
| 257 | stable branch. |
| 258 | |
| 259 | [DOC] documentation updates or fixes only. No code is affected, no need |
| 260 | to upgrade. These patches can also be sent right after a new |
| 261 | feature, to document it. |
| 262 | |
| 263 | [TESTS] added regression testing configuration files or scripts |
| 264 | |
| 265 | [BUILD] fix build issues. If you could build, no upgrade required. |
| 266 | |
| 267 | [LICENSE] licensing updates (may impact distro packagers) |
| 268 | |
| 269 | [RELEASE] release a new version (development version or stable version) |
| 270 | |
| 271 | [PATCH] any other patch which could not be qualified with the tags above. |
| 272 | |
| 273 | |
| 274 | The tags are not rigid, and I reserve the right to change them when merging the |
| 275 | patch. It may happen that a same patch has a different tag in two distinct |
| 276 | branches. The reason is that a bug in one branch may just be a cleanup in the |
| 277 | other one because the code cannot be triggered. |
| 278 | |
| 279 | Examples of messages : |
| 280 | - [DOC] document options forwardfor to logasap |
| 281 | - [BUG] stats: connection reset counters must be plain ascii, not HTML |
| 282 | - [MEDIUM] checks: support multi-packet health check responses |
| 283 | - [RELEASE] Released version 1.4.2 |
| 284 | |
| 285 | For a more efficient interaction between the mainline code and your code, I can |
| 286 | only strongly encourage you to try the Git version control system : |
| 287 | |
| 288 | http://git-scm.com/ |
| 289 | |
| 290 | It's very fast, lightweight and lets you undo/redo your work as often as you |
| 291 | want, without making your mistakes visible to the rest of the world. It will |
| 292 | definitely help you contribute quality code and take other people's feedback |
| 293 | in consideration. In order to clone the HAProxy Git repository : |
| 294 | |
| 295 | $ git clone http://git.1wt.eu/git/haproxy-1.4.git (stable 1.4) |
| 296 | $ git clone http://git.1wt.eu/git/haproxy.git/ (development) |
| 297 | |
| 298 | If you decide to use Git for your developments, then your commit messages will |
| 299 | have the subject line in the format described above, then the whole description |
| 300 | of your work (mainly why you did it) will be in the body. You can directly send |
| 301 | your commits to the mailing list, the format is convenient to read and process. |
| 302 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 303 | -- end |