实现openresty和php的结合

OpenResty:

OpenResty(又称:ngx_openresty) 是一个基于 NGINX 的可伸缩的 Web 平台,OpenResty 是一个强大的 Web 应用服务器,Web 开发人员可以使用 Lua 脚本语言调动 Nginx 支持的各种 C 以及 Lua 模块,更主要的是在性能方面,OpenResty可以 快速构造出足以胜任 10K 以上并发连接响应的超高性能 Web 应用系统。

一、实验环境

实验主机三台:
server1:172.25.7.2
server3:172.25.7.4
server4:172.25.7.5
实验环境:
下载好php、memcache下载配置完成,详情参考我之前博客
如果实验主机存在nginx请关闭,httpd请关闭,haproxy请关闭,避免80端口被占用

二、server1下载openresty

在官网下载openresty-1.17.8.2.tar.gz
tar zxf  openresty-1.17.8.2.tar.gz
cd openresty-1.17.8.2
./configure
gmake
gmake install
cd /usr/local/openresty/nginx/sbin  <先检查80端口是否被占用,如果被占用,必须关闭>
##无法reload,建议过滤openresty下nginx的进程号,kill -9 进程号  强制关闭
##然后重新./nginx
./nginx -v   ##<查看版本号>
./nginx -t   ##<查看是否nginx配置文件有错>
./nginx      ##<开启nginx>
 

实现openresty和php的结合_第1张图片

三、server1中openresty+memcache

vim /usr/local/openresty/nginx/conf/nginx.conf 
http {
    upstream memcache {
        server 172.25.7.4:11211;
        server 172.25.7.5:11211;
        server 127.0.0.1:11211
        keepalive 512 ;
        }     
#本机上启动了一个memcache服务,端口为默认的11211,
#keepalive指令是http-upsteram- 
#keepalive-module提供的功能,这里我们最大保持512个不立即关闭的连接用于提升性能。
#为memc-nginx-module配置location
在server里面写
    location /memc {
        internal;                    #只接受内部访问
        memc_connect_timeout 100ms;  #与memcached服务器建立连接的超时时间
        memc_send_timeout 100ms;     #设置发送请求到memcached服务器的超时时间
        memc_read_timeout 100ms;
        set $memc_key $query_string; #使用内置的$query_string来作为key
        set $memc_exptime 300;       #缓存失效时间
        memc_pass memcache;
        }
#"~ \.php$"location配置了缓存
    location ~ \.php$ {
            set $key $uri$args;   
            #当所请求的uri以".php"结尾时,先用memcache查询$uri$args为key的数据
            srcache_fetch GET /memc $key;   #输入拦截器
            srcache_store PUT /memc $key;   #输出拦截器
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi.conf;
        }
    }
}
-------------------------------------------------------------------------------
/usr/local/openresty/nginx/sbin/nginx -s reload 重新加载nginx

实现openresty和php的结合_第2张图片

实现openresty和php的结合_第3张图片

四、在server3和server4中操作

  1. 下载memcached    yum install -y memcached
  2. systemctl start memcached

五、在server1中配置php监控

tar zxf memcache-4.0.5.2.tar.gz 
cd /root/memcache-4.0.5.2
cp memcache.php  /usr/local/openresty/nginx/html #把memcache.php复制
vim  /usr/local/openresty/nginx/html/memcache.php 
$MEMCACHE_SERVERS[] = '172.25.6.6:11211'; // add more as an array
$MEMCACHE_SERVERS[] = '172.25.6.7:11211'; // add more as an array
vim /usr/local/openresty/nginx/html/index.php

实现openresty和php的结合_第4张图片

实现openresty和php的结合_第5张图片

测试:ab -c10 -n 10000 http://172.25.7.2/index.php

浏览器访问172.25.7.2/memcache.php

实现openresty和php的结合_第6张图片

 

你可能感兴趣的:(linux实战,openresty,php)