# lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.5.1804 (Core)
Release: 7.5.1804
Codename: Core
2.下载Nginx相关:lua-nginx-module
# cd /home/install-files/
# wget http://luajit.org/download/LuaJIT-2.0.5.tar.gz
# wget https://github.com/openresty/lua-nginx-module/archive/v0.10.10.tar.gz
# wget http://nginx.org/download/nginx-1.14.0.tar.gz
# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz
# ls
LuaJIT-2.0.5.tar.gz nginx-1.14.0.tar.gz v0.10.10.tar.gz
3.安装LuaJIT和PCRE
# tar zxvf LuaJIT-2.0.5.tar.gz -C /usr/local/src
# cd /usr/local/src/LuaJIT-2.0.5/
# make && make install
# yum install -y gcc gcc-c++
# yum install -y openssl openssl-devel
# tar zxvf pcre-8.40.tar.gz
# cd pcre-8.40
# ./configure
# make && make install
# man pcre
Error:/usr/local/nginx/sbin/nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
ln -s /usr/local/lib/libluajit-5.1.so.2 /lib64/libluajit-5.1.so.2