nginx的luajit安装luarocks并安装luafilesystem by admin on -- :: in , 69次 标题有点绕口.我尽量把关键词都贴进去.之前因为自己的nginx安装了ngx_lua模块,但是又需要引入 但是安装luafilesystem又需要先安装luarocks,比较繁琐.这里就想记录一下安装过程. nginx安装ngx_lua模块可以参考:LNMP平滑升级nginx并安装ngx_lua模块教程 下面进入正题 下载: wget http://keplerpro…
一.先安装lua: brew install lua 我本机的安装路径为:/usr/local/Cellar/lua/5.3.4_2 二.安装luarocks 下载luarocks的安装包: http://luarocks.github.io/luarocks/releases/luarocks-2.4.3.tar.gz 解压后到安装包的目录下执行如下命令(可以自行根据自己的lua版本号进行修改): ./configure --with-lua=/usr/local/Cellar/lua/5.3…
wget https://luarocks.org/releases/luarocks-2.4.1.tar.gz tar -xzvf luarocks-2.4.1.tar.gz cd luarocks-2.4.1/ ./configure --prefix=/usr/local/openresty/luajit \ --with-lua=/usr/local/openresty/luajit/ \ --lua-suffix=jit \ --with-lua-include=/usr/local/…
引言 在上一篇,我们组装好了虚拟机的硬件部分,那么现在我们就要把操作系统装上了,既然是服务器,那么安装linux操作系统是个比较好的选择,如果你喜欢的话,安装windows也是没有任何问题的 我这里选择centos7作为虚拟机环境,centos的系统比较稳定,而且在上一篇为虚拟机命名的时候,就已经做好了铺垫了,那么首先我们需要获取centos的光盘镜像文件.下载centos7镜像文件 centos7下载页:http://101.110.118.38/isoredirect.centos.org/…
用了3年多的本本罢工,最近新入手了一台 rmbp,一堆工作环境要配置,LNMP 里的 NMP 是常规要安装的,恰好也是第一次在 mac 上安装配置 nginx.mysql.php,所以顺便做个记录,免得以后忘了也好查看,不用到处翻. PS:下面的安装都是基于 homebrew,如果不熟悉或者还没安装有 homebrew 的话,可以查看这篇关于 homebrew 的介绍. 安装nginx 用 brew 一键安装 nignx: 1 brew install nginx 如果需要安装其他 nginx…
Building nginx from Sources(从源代码安装nginx) The build is configured using the configure command.  安装用配置命令 It defines various aspects of the system, including the methods nginx is allowed to use for connection processing. At the end it creates a Makefile…
Centos下安装nginx rpm包                                                                                                                            www.169it.com 1 在nginx官方网站下载一个rpm包,下载地址是:http://nginx.org/en/download.html wget http://nginx.org/packages/c…
环境说明:操作系统:CentOS6.7 x86_64Nginx版本:nginx-1.9.7Keepalived版本:keepalived-1.2.24 主nginx + Keepalived :10.219.24.26备nginx + Keepalived :10.219.24.23虚拟IP:10.219.24.100后端tomcat_1:10.219.24.21:8080后端tomcat_2:10.219.24.21:8081 架构与原理: 前端双 Nginx + Keepalived ,Ng…
网上教程很多,但是nginx不太多,下面安装时候主要参考的篇文章: http://54im.com/linux/linux-cacti-cn-install.html http://www.tecmint.com/install-cacti-network-monitoring-on-rhel-centos-6-3-5-8-and-fedora-17-12/ 主要 http://tongcheng.blog.51cto.com/6214144/1627590 流水账 http://better.…
HHVM起源于Facebook公司,是一个开源的PHP虚拟机,使用JIT的编译方式以及其他技术,让PHP代码的执行性能大幅提升.HHVM提升PHP性能的途径,采用的方式就是替代Zend引擎来生成和执行PHP的中间字节码(HHVM生成自己格式的中间字节码). HHvm可以很大程度上提高PHP的性能,能够让同等配置的服务器承受更多的流量.HHvm建站环境搭建起来有点复杂,之前的HHVM安装使用教程和HHvm Apache 2.4 Nginx建站环境因为要依赖于编译,各种代码执行,会出现各种莫名的问题…