HAProxy 是一种免费、开源且可靠的高可用性和负载平衡服务器解决方案。它特别适用于访问量非常高的网站,并为世界上许多访问量最大的网站提供支持。HAProxy 是用 C 编写的,它为在多个服务器上运行的基于 TCP 和 HTTP 的应用程序提供高可用性负载平衡器。它因其效率、可靠性以及低内存和 CPU 占用空间而广受欢迎。
在 Debian 11 Bullseye 上安装 HAProxy
步骤 1. 在我们安装任何软件之前,通过apt
在终端中运行以下命令来确保您的系统是最新的很重要:
sudo apt update sudo apt upgrade sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common
步骤 2. 安装 Apache 以设置后端 Web 服务器。
现在我们设置了两个后端 Apache 服务器:
- 在第一台后端服务器上,使用以下命令安装 Apache 包:
sudo apt install apache2
接下来,创建一个示例 Apache 索引页面:
echo "<H1>Welcome to the first Apache Server</H1>" | tee /var/www/html/index.html
- 在第二个后端服务器上,使用以下命令安装 Apache 包:
sudo apt install apache2
然后,创建一个示例 Apache 索引页面:
echo "<H1>Welcome to the second Apache Server</H1>" | tee /var/www/html/index.html
步骤 3. 在 Debian 10 上安装 HAProxy。
默认情况下,HAProxy 软件包在 Debian 11 基础存储库中不可用。现在我们使用以下命令将 HAProxy 存储库添加到您的系统:
curl https://haproxy.debian.net/bernat.debian.org.gpg | gpg --dearmor > /usr/share/keyrings/haproxy.debian.net.gpg echo deb "[signed-by=/usr/share/keyrings/haproxy.debian.net.gpg]" http://haproxy.debian.net bullseye-backports-2.4 main > /etc/apt/sources.list.d/haproxy.list
然后,使用以下命令安装 HAProxy:
suso apt update sudo apt install haproxy=2.4.*
安装 HAProxy 后,启动 HAProxy 服务并使其在系统重新启动时启动:
sudocsystemctl start haproxy
sudo systemctl enable haproxy
步骤 4. 配置 HAProxy。
HAProxy 的配置文件存储在该文件中。该文件是在安装过程中自动创建的。您将需要编辑 HAProxy 默认配置文件并定义后端 Web 服务器:/etc/haproxy/haproxy.cfg
nano /etc/haproxy/haproxy.cfg
添加以下几行:
frontend apache_front # Frontend listen port - 80 bind *:80 # Set the default backend default_backend apache_backend_servers # Enable send X-Forwarded-For header option forwardfor # Define backend backend apache_backend_servers # Use roundrobin to balance traffic balance roundrobin # Define the backend servers server backend01 192.168.77.20:80 check server backend02 192.168.77.21:80 check
保存并关闭文件,然后重启HAProxy服务,使新配置生效:
sudo systemctl restart haproxy
步骤 5. 验证 HAProxy。
成功完成配置后,打开 Web 浏览器并键入 URL 。你会看到 HAProxy 在每次刷新后都在向后端服务器发送请求:http://your-haproxy-ip-address
感谢您使用本教程在 Debian 11 Bullseye 上安装最新版本的 HAProxy 负载平衡服务器。如需其他帮助或有用信息,我们建议您查看HAProxy 官方网站。