openresty怎么替换nginx

2023-05-01,

本文小编为大家详细介绍“openresty怎么替换nginx”,内容详细,步骤清晰,细节处理妥当,希望这篇“openresty怎么替换nginx”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

OpenResty又被称为ngx_openresty,是基于Nginx的核心Web应用程序服务器,OpenResty是基于Nginx和Lua的高性能Web平台,OpenResty通过汇聚各种设计精良的Nginx模块,从而将Nginx有效地变成一个强大的通用Web应用平台。

下载openresty

wget https://openresty.org/download/openresty-1.15.8.1.tar.gz
tar zxvf openresty-1.15.8.1.tar.gzcd openresty-1.15.8.1

安装openresty

查看当前nginx的编译配置

nginx -V

如下所示,”configure arguments”就是编译nginx时的配置

nginx version: nginx/1.14.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --with-http_ssl_module

编译openresty,把刚才的配置加到”configure”命令后方,如果需要使用lua也可以加上”–with-luajit”

./configure --with-http_ssl_module --with-luajit
gmake && gmake install

gmake即GNU make,使用它的原因是非GNU平台可能占用了make命令,在linux系统下不用考虑这个问题。GNU,在Unix系统发明后,开始出现闭源收费软件,于是有人发起了自由软件的计划,即GNU计划,宣扬开源精神,编辑器Emacs和编译器GCC就属于GNU下的项目,但是GNU下缺少系统内核,后来机缘巧合地与Linux进行了合作,发布了GNU/Linux。

更换配置文件

把原有nginx配置文件移动到openresty目录

mv /usr/local/nginx/conf/*.conf /usr/local/openresty/conf
mv /usr/local/nginx/conf/conf.d /usr/local/openresty/conf

停止原nginx

nginx -s stop

启动openresty

/usr/local/openresty/bin/openresty

如果提示”nginx: [warn] the “ssl” directive is deprecated, use the “listen … ssl””,原因是nginx1.15版本及以后已经不需要使用ssl on命令了,可以去掉。

软链接到bin目录

如果觉得命令使用不方便可以直接软链接到bin目录,并改名为nginx

ln -s /usr/local/openresty/bin/openresty /usr/local/bin/nginx

读到这里,这篇“openresty怎么替换nginx”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注本站行业资讯频道。

《openresty怎么替换nginx.doc》

下载本文的Word格式文档,以方便收藏与打印。