OpenResty 下载与安装

OpenResty 下载与安装


前言

官网地址:http://openresty.org/cn/

下载地址:http://openresty.org/cn/download.html


安装教程

官方安装教程链接:http://openresty.org/cn/linux-packages.html



安装

# 添加仓库
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
# 安装 openresty
sudo yum install -y openresty
# 安装 openresty 命令行工具
sudo yum install -y openresty-resty


默认安装到 /usr/local/openresty


命令

/usr/local/openresty/bin/openresty 映射到 /usr/local/openresty/nginx/sbin/nginx ,所以可以通过 openresty 启动,也可以通过 nginx 启动


# 进入 openResty 安装目录下的bin目录 /usr/local/openresty/bin
./openresty
# 由于 openResty 基于 nginx 开发,配置 openResty 只需要配置 nginx 即可,/usr/local/openresty/nginx
./nginx


访问测试


OpenResty 下载与安装

上一篇:虚拟环境的安装包如何导出,如何安装到新的虚拟环境中,virtualenv


下一篇:那个极爽的命令行纠错软件 The Fuck 是如何工作的