鲲鹏云服务器源码编译OpenResty
环境要求
云服务器要求
本文以云服务器KC1实例测试,云服务器配置如表 云服务器配置所示。
项目 |
说明 |
规格 |
kc1.large.2 | 4vCPUs | 8GB |
磁盘 |
系统盘:高IO(40GB) |
操作系统要求
操作系统要求如表 操作系统要求所示。
项目 |
说明 |
下载地址 |
CentOS |
7.6 |
在公共镜像中已提供。 |
Kernel |
4.14.0 |
在公共镜像中已提供。 |
配置编译环境
执行如下命令,安装依赖包。
yum install wget readline-devel pcre-devel openssl-devel gcc -y
获取源码
获取“openresty-1.15.8.3”源码包。
cd /usr/local/src
wget https://openresty.org/download/openresty-1.15.8.3.tar.gz
编译和安装
解压软件包。
tar -zxvf openresty-1.15.8.3.tar.gz
进入openresty目录。
cd /usr/local/openresty-1.15.8.3
配置生成Makefile。
./configure
该配置会将openresty默认安装在/usr/local/openresty
编译安装openresty
gmake -j4 && gmake install
设置环境变量。
ln -s /usr/local/openresty/nginx/sbin/nginx /usr/bin/
nginx -p /usr/local/openresty/nginx/ -c conf/nginx.conf #-p设置前缀路径,-c指定配置文件
运行和验证
检查是否是openresty的版本。
nginx -v
当系统回显类似如下信息时,表示安装openresty成功。
nginx version: openresty/1.15.8.3
在浏览器中输入URL:http://云服务器公网IP地址:80并单击回车。
当出现以下页面,说明openresty服务器环境配置成功
- 点赞
- 收藏
- 关注作者
评论(0)