作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建具有 lua 支持的 nginx,如下所示。
export LUAJIT_LIB=/usr/local/lib/
export LUAJIT_INC=/usr/local/include/luajit-2.0/
./configure --with-http_geoip_module --with-http_stub_status_module --with-http_ssl_module --add-module=/home/ubuntu/ngx_devel_kit --add-module=/home/ubuntu/lua-nginx-module --add-module=/home/ubuntu/redis2-nginx-module --add-module=/home/ubuntu/form-input-nginx-module
make -j2
sudo make install
sudo /etc/init.d/nginx start
Starting nginx: /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
LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH
sudo /etc/init.d/nginx start
最佳答案
# Export the Library Path
export LD_LIBRARY_PATH=/usr/local/lib/:/opt/drizzle/lib/:$LD_LIBRARY_PATH
关于nginx - 尝试使用 luajit 支持构建 nginx 但 libluajit-5.1.so.2 : cannot open shared object file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9583141/
我正在编写一个使用 LuaJIT 的项目。我正在尝试在我有一段时间没有运行它的计算机上运行我的项目。它过去运行得很好,但现在当我尝试运行它时它会提示。 我的源代码树中有 LuaJIT,它构建得很好。我
我正在构建具有 lua 支持的 nginx,如下所示。 export LUAJIT_LIB=/usr/local/lib/ export LUAJIT_INC=/usr/local/include/l
我是一名优秀的程序员,十分优秀!