Skip to Content
Sistemas distribuidos con Node.js
book

Sistemas distribuidos con Node.js

by Thomas Hunter
September 2024
Intermediate to advanced
390 pages
12h 1m
Spanish
O'Reilly Media, Inc.
Content preview from Sistemas distribuidos con Node.js

Apéndice A. Instalación de HAProxy

HAProxy es un proxy inverso, útil para interceptar peticiones antes de que lleguen al código de la aplicación. Se utiliza en este libro para descargar algunas tareas que, de otro modo, no deberían ser gestionadas por un proceso Node.js.

Si utilizas Linux, tienes varias opciones. La primera opción es intentar utilizar el instalador de software de tu distro para instalar directamente haproxy. Esto puede ser tan fácil como sudo apt install haproxy. Sin embargo, esto puede instalar una versión de HAProxy demasiado antigua. Si la versión de HAProxy que proporciona tu distro es anterior a la v2, lo que puedes comprobar ejecutando haproxy -v después de instalar, entonces tendrás que instalarlo de otra manera.

Linux: Construye desde el código fuente

Este primer método descargará el paquete de código fuente oficial del sitio web http://haproxy.org. A continuación, extrae el contenido, compila la aplicación y realiza una instalación. Este método también instalará las páginas man, que proporcionarán documentación útil. Ejecuta estos comandos para descargar y compilar HAProxy:

$ sudo apt install libssl-dev # Debian / Ubuntu
$ curl -O http://www.haproxy.org/download/2.1/src/haproxy-2.1.8.tar.gz
$ tar -xf haproxy-2.1.8.tar.gz
$ cd haproxy-2.1.8
$ make -j4 TARGET=linux-glibc USE_ZLIB=yes USE_OPENSSL=yes
$ sudo make install

Si obtienes errores durante la compilación, puede que tengas que utilizar el gestor de paquetes de tu distro para instalar los paquetes ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Desarrollo Web con Node y Express, 2ª Edición

Desarrollo Web con Node y Express, 2ª Edición

Ethan Brown
Programación PHP, 4ª Edición

Programación PHP, 4ª Edición

Kevin Tatroe, Peter MacIntyre
Proyectos Node.js

Proyectos Node.js

Jonathan Wexler
Angular: En marcha

Angular: En marcha

Shyam Seshadri

Publisher Resources

ISBN: 9781098197742