安装OpenResty
Posted braveliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装OpenResty相关的知识,希望对你有一定的参考价值。
【1】环境部署
[1] 依赖环境安装
在环境的任意目录执行命令:yum install pcre-devel openssl-devel gcc curl
一路手动输入y
直到Complete,安装完成。
[2] 增加仓库
在环境的任意目录执行命令:
(2.1)yum install yum-utils
一路手动输入y
直到Complete,安装完成。
(2.2)yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
增加openresty官网仓库,以便后期更新openresty版本
[3] 安装命令
在环境的任意目录执行命令:
yum install openresty
一路手动输入y
直到Complete,安装完成。
[4] 环境变量
# vim /etc/profile
最末添加一行:export PATH=/usr/local/openresty/nginx/sbin:$PATH
如下图:
使环境变量立即生效命令:source /etc/profile
[5] 关闭服务的自启动
chkconfig openresty off
[6] 查看版本号
openresty -v
备注:openresty默认会安装在目录:/usr/local/openresty
Good Good Study,Day Day Up.
顺序 选择 循环 总结
以上是关于安装OpenResty的主要内容,如果未能解决你的问题,请参考以下文章