写点什么

OpenResty 安装

作者:流火
  • 2023-06-30
    北京
  • 本文字数:446 字

    阅读完需:约 1 分钟

1.官网

https://openresty.org/cn/

2.linux 环境

2.1 配置 yum 仓库

#获取 openresty yum 配置wget https://openresty.org/package/centos/openresty.repo#转移文件到 yum 仓库配置mv openresty.repo /etc/yum.repos.d/
# 下面为上面两个的集合yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
复制代码

2.2 安装 openresty

yum install openresty
复制代码

错误

处理方式:

修改 上面的 openresty.repo 文件 根据 centos 版本 如下


2.3 安装 resty 命令行工具

yum install -y openresty-resty
复制代码

命令行工具 opm 在 openresty-opm 包里,而 restydoc 工具在 openresty-doc 包里头

2.4 查看 openresty 仓库软件包

yum --disablerepo="*" --enablerepo="openresty" list available
复制代码

2.5 验证 restry

which restyhead -n 1 /usr/bin/resty
复制代码



运行命令测试

resty --shdict='dogs 1m' -e 'local dict=ngx.shared.dogs dict:set("tom",56) print(dict:get("tom"))';
复制代码

3.参考

https://www.runoob.com/w3cnote/openresty-intro.html

https://code84.com/804831.html

用户头像

流火

关注

还未添加个人签名 2018-01-31 加入

还未添加个人简介

评论

发布
暂无评论
OpenResty 安装_流火_InfoQ写作社区