Centos7安装Openresty
Posted Milton
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7安装Openresty相关的知识,希望对你有一定的参考价值。
通过yum安装
在 /etc/yum.repos.d/ 下新建 OpenResty.repo 内容
[openresty] name=Official OpenResty Repository baseurl=https://copr-be.cloud.fedoraproject.org/results/openresty/openresty/epel-$releasever-$basearch/ skip_if_unavailable=True gpgcheck=1 gpgkey=https://copr-be.cloud.fedoraproject.org/results/openresty/openresty/pubkey.gpg enabled=1 enabled_metadata=1
查看可用的openresty软件
yum --disablerepo="*" --enablerepo="openresty" list available
当前安装的是 openresty.x86_64 版本1.11.2.2-8.el7.centos, 内置的openssl 是 1.0.2j
安装
yum install openresty
默认会安装到 /usr/local/openresty/ 目录下, 目录下包含了 luajit, lualib, nginx, openssl, pcre, zlib 这些组件
启动
/usr/local/openresty/nginx/sbin/nginx -c /usr/local/openresty/nginx/conf/nginx.conf
防火墙检查和配置
# 查看状态 systemctl status firewalld # 查看开放的端口 firewall-cmd --zone=public --list-all # 添加80端口 firewall-cmd --permanent --zone=public --add-port=80/tcp firewall-cmd --reload
以上是关于Centos7安装Openresty的主要内容,如果未能解决你的问题,请参考以下文章
centos7.4 openresty-1.15.8.2 火焰图安装测试