centos一键部署负载均衡shell脚本
时间: 2023-08-31 10:08:56 浏览: 115
以下是一个简单的CentOS一键部署负载均衡的Shell脚本,您可以根据您的需求进行修改:
```bash
#!/bin/bash
# 安装软件
yum install -y haproxy
# 配置HAProxy
cat <<EOF > /etc/haproxy/haproxy.cfg
global
log 127.0.0.1 local0 notice
maxconn 4096
chroot /usr/share/haproxy
user haproxy
group haproxy
daemon
defaults
log global
mode http
option httplog
option dontlognull
retries 3
option redispatch
timeout connect 5000
timeout client 10000
timeout server 10000
frontend http-in
bind *:80
default_backend servers
backend servers
balance roundrobin
server web1 192.168.1.10:80 check
server web2 192.168.1.11:80 check
EOF
# 启动HAProxy
systemctl start haproxy
systemctl enable haproxy
```
注意:此脚本仅适用于CentOS系统,并且需要以root用户执行。还需要根据您的服务器IP地址和端口号进行相应的修改。
阅读全文