OpenResty实现负载均衡
目录
什么是OpenResty?
- OpenResty(又称:ngx_openresty) 是一个基于 NGINX 的可伸缩的 Web 平台,由中国人章亦春发起,提供了很多高质量的第三方模块。
- OpenResty 是一个强大的 Web 应用服务器,Web 开发人员可以使用 Lua 脚本语言调动 Nginx 支持的各种 C 以及 Lua 模块,更主要的是在性能方面,OpenResty可以 快速构造出足以胜任 10K 以上并发连接响应的超高性能 Web 应用系统。
1. CentOS7 安装 OpenResty
1.1 安装 OpenResty 依赖库
yum install pcre-devel openssl-devel gcc curl
1.2 安装 OpenResty
1.2.1 下载
- 在官网下载最新的
OpenResty
源码包并解压编译安装:https://openresty.org/cn/
wget https://openresty.org/download/openresty-1.19.3.1.tar.gz
安装完成后默认会在 root
目录下
1.2.2 解压
tar xzvf openresty-1.19.3.1.tar.gz
1.2.3 配置、编译、安装
# 进入 openresty 目录
cd openresty-1.19.3.1
# 配置(监测环境、生成Makefile、为编译做准备)
# 输入以下命令配置
./configure
# 提示: 默认, --prefix=/usr/local/openresty 程序会被安装到/usr/local/openresty目录
# 也可以指定其他目录,例如/root/openresty 目录: ./configure --prefix=/root/openresty
# 同时可以执行:./configure --help 查看更多选择
# 编译并安装
make && make install
2. 配置OpenResty
2.1 准备工作
-
准备一台地址为 192.168.3.61 的服务器
-
在服务器中安装三个tomcat,并且更改tomcat配置文件,使端口等属性不冲突
完成之后大概是这样子:
2.2 进入配置目录
cd /usr/local/openresty/nginx/
2.3 修改配置文件
2.2.1 进入conf
cd conf
2.3.2 编辑 nginx.conf
vim nginx.conf
2.3.3 添加两个属性
weight
代表权重,即服务器被访问的频率
3. 启动服务
3.1 进入启动目录
cd /usr/local/openresty/nginx/sbin/
3.2 常用命令
3.1 启动服务
./nginx
3.2 停止服务
./nginx -s stop
3. 3 重启服务
./nginx -s reload
3.4 检验nginx配置是否正确
./nginx -t
4. 开启相应端口
# 开启8080、 8081、 8082端口, 同时别忘了开启80端口
firewall-cmd --zone=public --add-port=8080/tcp --permanent
firewall-cmd --zone=public --add-port=8081/tcp --permanent
firewall-cmd --zone=public --add-port=8082/tcp --permanent
firewall-cmd --zone=public --add-port=80/tcp --permanent
# 配置立即生效
firewall-cmd --reload