怎么确认openresty是安装了luajit
时间: 2023-12-12 11:02:56 浏览: 130
luajit2:LuaJIT 2的OpenResty分支
要确认 OpenResty 是否安装了 LuaJIT,可以通过以下两种方法进行:
1. 查看 OpenResty 版本信息
打开终端,输入 `openresty -v` 命令,查看 OpenResty 的版本信息:
```
$ openresty -v
nginx version: openresty/1.19.9.1
built by gcc 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
built with OpenSSL 1.1.1g 21 Apr 2020
TLS SNI support enabled
configure arguments: --prefix=/usr/local/openresty/nginx --with-http_ssl_module --with-http_v2_module --with-openssl=/usr/local/src/openssl-1.1.1g --with-pcre=/usr/local/src/pcre-8.44 --with-pcre-jit --with-cc-opt='-O2 -fdebug-prefix-map=/data/builder/debuild/nginx-1.19.9/debian/debuild-base/nginx-1.19.9=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie'
```
如果在命令输出中看到 `built with LuaJIT` 字样,则表示 OpenResty 是使用 LuaJIT 编译的,已经安装了 LuaJIT。
2. 查看 OpenResty Lua 模块
打开终端,输入 `openresty -V` 命令,查看 OpenResty 编译时开启的 Lua 模块:
```
$ openresty -V
openresty version: openresty/1.19.9.1
built by gcc 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
built with OpenSSL 1.1.1g 21 Apr 2020
TLS SNI support enabled
configure arguments: --prefix=/usr/local/openresty/nginx --with-http_ssl_module --with-http_v2_module --with-openssl=/usr/local/src/openssl-1.1.1g --with-pcre=/usr/local/src/pcre-8.44 --with-pcre-jit --with-cc-opt='-O2 -fdebug-prefix-map=/data/builder/debuild/nginx-1.19.9/debian/debuild-base/nginx-1.19.9=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie'
```
如果在命令输出中看到 `--with-luajit` 或者 `--with-lua` 字样,则表示 OpenResty 安装了 LuaJIT。其中,`--with-luajit` 表示使用 LuaJIT 编译,`--with-lua` 表示使用官方 Lua 编译。如果两个选项都没有出现,则表示 OpenResty 没有安装 LuaJIT。
阅读全文