首页 > 在CentOS 6.9 x86_64上玩转OpenResty 1.13.6.1中的resty-cli模块

在CentOS 6.9 x86_64上玩转OpenResty 1.13.6.1中的resty-cli模块

resty-cli是OpenResty中命令行工具的集合,其中resty工具是最有用的。

安装好OpenResty之后,resty-cli就会默认安装,以我的安装为例,参见博文

http://blog.csdn.net/tao_627/article/details/78912545

它的位置在/opt/openresty/bin下面





前提条件

OpenResty 1.7.7.2+



配置环境变量

vim /etc/profile

将末尾添加进目录/opt/openresty/bin

export PATH=/opt/openresty/nginx/sbin:/opt/openresty/bin:$PATH

保存退出,然后运行下面的命令生效

source /etc/profile

执行下面的命令检查

echo $PATH





安装依赖库

yum -y install perl-Time-HiRes

原因参见博文

http://blog.csdn.net/tao_627/article/details/78919286

然后我们可以查看resty的路径和版本号

resty -h

resty -v







业务需求

通常我们验证nginx_lua中的脚本,或者调试lua相关代码片段,或者了解ngx.md5之类函数的用法等,只能通过加入nginx.conf中的配置,在nginx框架上玩。

但是这未免比较不便,如果我们有一个命令行工具类似lua, luajit, python等直接执行该多好啊。那么这里的resty就是你想要的工具。



测试样例

下面的几个例子都是来自resty-cli模块的官网

resty -e 'print("hello world")'

time resty -e 'ngx.sleep(3) print("done ")'

resty -e 'ngx.say(ngx.md5("hello"))'

resty -e 'io.stderr:write("hello world ")' > /dev/null



更深入的例子及高深玩法有待后续继续挖掘

resty -e 'print("got: ", io.stdin:read("*l"))'



其中taoyunxing是我从键盘输入的内容。

time resty -e 'local ths = {}

                 for i = 1, 3 do

                     ths[i] = ngx.thread.spawn(function ()

                                  ngx.sleep(3) ngx.say("done ", i)

                              end)

                 end

                 for i = 1, #ths do ngx.thread.wait(ths[i]) end'



resty --shdict='dogs 1m' -e 'local dict = ngx.shared.dogsdict:set("Tom", 56)print(dict:get("Tom"))'






参考文献

[1].https://openresty.org/cn/resty-cli.html

[2].https://github.com/openresty/resty-cli#readme

[3].

更多相关:

  • 好久没有玩OpenResty,这段时间机会难得,赶紧实践一下。下面是我在rMBP的CentOS 6.9 x86_64虚拟机上安装目前最新版OpenResty 1.13.6.1的笔记。 OpenResty的下载地址是 https://openresty.org/cn/download.html 下面按照步骤说明如下:...

  • 下面是我在阅读《OpenResty最佳实践》时的实践细节,特此记录一下。这是一份值得反复阅读且十分宝贵的资料,感谢360的开源! 简介 OpenResty(又称:ngx_openresty) 是一个基于 NGINX 的可伸缩的 Web 平台,由中国人章亦春发起,提供了很多高质量的第三方模块。 OpenResty 是一个强大...

  • 在实际运维中,我们经常遇到Apache Traffic Server遇到段错误时,在traffic.out中留下的堆栈调用信息,比如下面的 FATAL: ../.././ats-4.2.0/proxy/http/HttpSM.cc:2080: failed assert `!t_state.host_db_info.revers...

  • 一、安装jdk配java环境rpm -ivh jdk.rpm打开/etc/profile增加:JAVA_HOME=/usr/java/jdk1.7.0_60 CLASSPATH=.:$JAVA_HOME/lib.tools.jar PATH=$JAVA_HOME/bin:$PATH export JAVA_HOME CLASSPAT...