CentOS OpenResty 安装

CentOS OpenResty 安装
1.安装依赖
yum install readline-devel pcre-devel openssl-devel
2.下载包
wget https://openresty.org/download/openresty-1.19.3.1.tar.gz
tar zxvf openresty-1.19.3.1.tar.gz
cd openresty-1.19.3.1
./configure -j2
make -j2
sudo make install

增加环境变量
export PATH=/usr/local/openresty/bin:$PATH
3.创建环境
mkdir /home/test_openresty
cd /home/test_openresty
mkdir logs/ conf/
创建nginx配置文件
vim ./conf/nginx.conf

worker_processes  1;
error_log /home/test_openresty/logs/error.log;
events {
    worker_connections 1024;
}
http {
    server {
        listen 8090;
        server_name localhost;
        location / {
            default_type text/html;
            content_by_lua_block {
                ngx.say("<p>Hello, World!</p>")
            };
        }
    }
}
4.启动nginx
/usr/local/openresty/nginx/sbin/nginx -p /home/test_openresty/ -c /home/test_openresty/conf/nginx.conf
/usr/local/openresty/nginx/sbin/nginx -p /home/test_openresty/ -c /home/test_openresty/conf/nginx.conf -s stop
/usr/local/openresty/nginx/sbin/nginx -p /home/test_openresty/ -c /home/test_openresty/conf/nginx.conf -s reload
检查nginx配置是否正确
/usr/local/openresty/nginx/sbin/nginx -p /home/test_openresty/ -c /home/test_openresty/conf/nginx.conf -t

5.测试
curl http://localhost:8090/

6.性能测试
安装压力测试工具
yum install httpd-tools -y
测试:
ab -c10 -n5000 http://localhost:8090/

注:如果遇到can't exec "CC",是因为没有安装perl,
yum install perl -y
yum install *gcc* -y
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值