【Lua】Lua 引用外部文件(require)的调试错误lua module ‘proxy.html‘ not found等

问题场景

这是一个源于实施部署的实践,部署一套应用,openresty+nginx+lua,nginx下的日志文件error.log一直报错模块不存在,甚是恼人

no field package.preload['resty.auth'] no file '/usr/local/openresty/site/lu

前台给我来了个500

An error occurred.
Sorry, the page you are looking for is currently unavailable.
Please try again later.
If you are the system administrator of this resource then you should check the error log for details.
Faithfully yours, nginx.

其实前台报错已然说明nginx起来了,不是端口问题了,我还傻傻的开了端口看了下。
这里特殊的地方就在于研发发的安装包里好像有些lua文件,刚好收到一个说把文件放进去

思路1:移动模块文件

1、下载第三方模块依赖:https://github.com/ledgetech/lua-resty-http
2、将lua-resty-http/lib/resty下的两个文件http.lua和http_headers.lua拷贝到/usr/local/openresty/lualib/resty目录下(目标路径根据 个人安装的openresty路径为准,这里是默认安装路径)
3、重启项目,检查错误日志。

我是把缺的部分挪过去后,报错的那个好了,然而一顿移动,累死个人,还是一个个缺
module ‘resty.http’ not found

思路2:设置require路径

lua进行require绝对路径时,会从package.path中进行遍历
假设我们的路径为/opt/config.lua

[yyq met]$ lua
Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio
> print(package.path)
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;/usr/lib64/lua/5.1/?/init.lua
> package.path = package.path..";/opt/?.lua"
> print(package.path)
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;/usr/lib64/lua/5.1/?/init.lua;/opt/?.lua
>local config= require("config")
> ^C
[yyq met]$ 

参考链接:lua require绝对路径文件时 module not found解决方法

说起来这个lua怎么和python有点儿像,不懂

其他参考:
openresty安装第三方库
Openresty 学习笔记(四)lualocks包管理器安装使用
部署openresty遇到的一些坑

你可能感兴趣的:(一名实施工程师的自我修养)