HAProxy 是最受欢迎的开源负载均衡软件之一,它还提供高可用性和代理功能。它特别适用于流量非常高的网站,并为世界上许多访问量最大的网站提供支持。
在 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 有一个默认的配置文件路径。现在修改前端和后端两部分。在前端部分,您需要定义 HAProxy IP 的端口、统计 URI 和后端名称。在后端部分,您需要定义负载平衡算法、后端服务器的名称、IP 和端口:/etc/haproxy/haproxy.cfg
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.1\r\nHost:\ localhost server apache1 192.168.77.20:80 check server apache2 192.168.77.21:80 check
保存并关闭也编辑文件:/etc/rsyslog.conf
nano /etc/rsyslog.conf
取消注释以下几行:
module(load="imudp") input(type="imudp" port="514")
保存并关闭文件。之后,使用以下命令为 rsyslog创建文件:haproxy.conf
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 。您应该会看到您的第一个Apache Web Server 1,然后再次刷新同一页面,您应该会看到您的Apache Web Server 2。http://192.168.77.8
感谢您使用本教程在您的 AlmaLinux 8 系统上安装 HAProxy 高性能 TCP/HTTP 负载均衡器。如需其他帮助或有用信息,我们建议您查看HAProxy 官方网站。