在本教程中,我们将向您展示如何在 AlmaLinux 8 上安装 HAProxy。对于那些不知道的人,HAProxy 是最受欢迎的开源负载均衡软件之一,它还提供高可用性和代理功能。 它特别适用于流量非常高的网站,并为世界上许多访问量最大的网站提供支持。
本文假设您至少具有 Linux 的基本知识,知道如何使用 shell,最重要的是,您将站点托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户中运行,否则您可能需要添加 ‘sudo
‘ 获取 root 权限的命令。 我将向您展示在 AlmaLinux 8 上逐步安装 HAProxy 高性能 TCP/HTTP 负载均衡器。您可以按照 Rocky Linux 的相同说明进行操作。
网络详细信息。
下面是我们的网络服务器。 有 2 个运行 Apache2 并侦听端口 80 的 Web 服务器和一个 HAProxy 服务器:
Web Server Details: Server 1: server1.idroot.us 192.168.77.20 Server 2: server2.idroot.us 192.168.77.21HAProxy Server: HAProxy: haproxy 192.168.77.8
在 AlmaLinux 8 上安装 HAProxy
步骤 1. 首先,让我们先确保您的系统是最新的。
sudo dnf update sudo dnf install epel-release
步骤 2. 在 AlmaLinux 8 上安装 HAProxy。
HAProxy 在默认的 AlmaLinux 8 存储库中可用。 现在运行下面的命令来安装它:
sudo dnf install haproxy
安装 HAProxy 后,现在启动 HAProxy 服务并使其在系统重新启动时启动:
sudo systemctl start haproxy sudo systemctl enable haproxy
步骤 3. 配置 HAProxy。
HAProxy 的配置文件的默认路径为 /etc/haproxy/haproxy.cfg
.现在修改前端和后端两部分。 在前端部分,您需要定义 HAProxy IP 的端口、统计 URI 和后端名称。 在后端部分,您需要定义负载平衡算法、后端服务器的名称、IP 和端口:
nano /etc/haproxy/haproxy.cfg
修改以下几行:
frontend http_balancer bind 192.168.77.8:80 option http-server-close option forwardfor stats uri /haproxy?stats default_backend Apache_webservers backend apache_webservers mode http balance roundrobin option httpchk HEAD / HTTP/1.1rnHost: localhost server apache1 192.168.77.20:80 check server apache2 192.168.77.21:80 check
Save 和 close 也编辑 /etc/rsyslog.conf
文件:
nano /etc/rsyslog.conf
取消注释以下几行:
module(load="imudp") input(type="imudp" port="514")
Save 和 close 文件。 之后创建 haproxy.conf
使用以下命令创建 rsyslog 文件:
nano /etc/rsyslog.d/haproxy.conf
添加以下几行:
local2.=info /var/log/haproxy-access.log local2.notice /var/log/haproxy-info.log
然后,启动 rsyslog 服务并使其在系统重新启动时启动:
sudo systemctl start rsyslog sudo systemctl enable rsyslog
配置 HAProxy 后,是时候重新启动服务了:
sudo systemctl restart haproxy
步骤 4. 配置防火墙。
我们将 HAProxy 添加到 AlmaLinux 8 防火墙并使用以下命令更新规则:
sudo firewall-cmd --add-port=8088/tcp --permanent sudo firewall-cmd --reload
步骤 5. 配置后端服务器。
现在我们安装 Apache 两个后端服务器上的服务器:
sudo apt install httpd
一次 Apache 服务器已安装,启动 Apache 服务并使其在系统重新启动时启动:
sudo systemctl start httpd sudo systemctl enable httpd
然后,修改默认 index.html
两个后端服务器上的文件:
nano /usr/share/httpd/noindex/index.html
删除所有行并添加以下行:
Welcome Apache Web Server 1
在第二个后端,使用以下命令编辑 index.html 文件:
nano /usr/share/httpd/noindex/index.html
删除所有行并添加以下行:
Welcome Apache Web Server 2
最后,HAProxy 被配置为基于负载平衡算法将所有传入请求转发到后端服务器。 现在,是时候检查 HAProxy 是否正常工作了。 打开您的网络浏览器并在 URL 中输入 HAProxy IP https://192.168.77.8
. 你应该看到你的第一个 Apache 网络服务器 1,然后再次刷新同一页面,您应该会看到您的 Apache 网络服务器 2.
恭喜! 您已成功安装 HAProxy。 感谢您使用本教程在您的 AlmaLinux 8 系统上安装 HAProxy 高性能 TCP/HTTP 负载均衡器。 如需更多帮助或有用信息,我们建议您查看 HAProxy 官方网站.