安装环境:CENTOS6.5,nginx1.6.2,php-5.5.18,mysql5.5.38

在安装软件之前安装epel源,就可以直接用yum安装libmcrypt,mhash,mcrypt等php扩展。

安装nginx

解决依赖关系,安装开发包组"Development Tools"和 "Server Platform Development"。

#tar –xf nginx-1.6.2

./configure \

--prefix=/usr/local/nginx \

--conf-path=/etc/nginx/nginx.conf \

--error-log-path=/var/log/nginx/error.log \

--http-log-path=/var/log/nginx/access.log \

--pid-path=/var/run/nginx/nginx.pid \

--lock-path=/var/lock/nginx.lock \

--user=nginx \

--group=nginx \

--http-client-body-temp-path=/var/tmp/nginx/client/ \

--http-proxy-temp-path=/var/tmp/nginx/proxy/ \

--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \

--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \

--http-scgi-temp-path=/var/tmp/nginx/scgi \

--with-pcre

#make && make install

添加nginx启动脚本,设置开机启动,请见上一篇博客

安装php-5.5.18

安装mcrypt libmcrypt mhash 等php扩展

# yum –y install mcrypt libmcrypt-devel mhash-devel

安装php图型扩展支持

# yum install -y libxml2-devel libjpeg-devel libpng-devel freetype-devel openssl-devel libcurl-devel libmcrypt-devel gd-devel

#tar –xf php-5.5.18.tar.bz2

#cd php-5.5.18

#./configure --prefix=/usr/local/php55 --with-config-file-path=/usr/local/php55/etc --with-mysql=mysqlnd  --with-zlib --enable-xml --disable-rpath  --enable-bcmath --enable-shmop --enable-sysvsem --with-curl  --enable-fpm  --enable-opcache  --with-mcrypt --with-gd --with-openssl --with-mhash --enable-sockets  --with-xmlrpc -enable-zip --enable-soap --with-config-file-scan-dir=/etc/php.d --with-bz2 --with-curl --with-jpeg-dir --with-png-dir

# make && make install

# cp php.ini-production  /usr/local/php55/etc/php.ini   #为php提供配置文件

#ln –s /usr/local/php55/etc/php.ini  /etc/php.ini             #为php.ini在/etc目录下创建软链接

# cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm

# chmod +x /etc/rc.d/init.d/php-fpm

# chkconfig --add php-fpm

# chkconfig php-fpm on       #配置php-fpm,为php-fpm提供Sysv init脚本,并将其添加至服务列表

# cp /usr/local/php55/etc/php-fpm.conf.default /usr/local/php55/etc/php-fpm.conf    #为php-fpm提供配置文件

编辑php-fpm的配置文件:
# vim /usr/local/php55/etc/php-fpm.conf

配置fpm的相关选项为你所需要的值,并启用pid文件(如下最后一行):
pm.max_children = 50                                                #设定php子进程最大数为50
pm.start_servers = 5                                                  #启动php时子进程数为52上
pm.min_spare_servers = 2                                        #空闲php子进程最少为2个
pm.max_spare_servers = 8                                       #空闲php子进程最大为8个
pid = /usr/local/php/var/run/php-fpm.pid            #pid文件路径

上面这些参数是可以根据系统性能和负载情况去调整的,在生产环境中这些参数可能会比这些数字要大很多,也可以设定php的子进程个数为静态的值。如果要设置静态的值,需要更改 pm = static ,php-fpm默认为动态的 pm = dynamic

# service php-fpm start                   启动php-fpm

nginx配置文件设置及整合nginx和php5.5

nginx
的配置文件核心模块为main和events,此外还包括标准http模块,可选http模块和邮件模块,还可支持诸多第三方模块。main用于配置错误
日志、进程、及权限等相关的参数,events用于配置I/O模型,如epoll,kqueue,select或poll等。nginx的主配置文件由几
个段组成,main,http, server,upstrean和location,被称为nginx的上下文,支持嵌套。

nginx的配置文件

1
2
3
4
5
6
7
8
9
10
11
12
#user  nobody;     #定义nginx工作进程的用户,在编译安装时已经指定用户nginx,注释掉
worker_processes  1;  #指定工作进程个数
#worker_cup_affinity cpumask ;    #用cpu掩码位明确绑定nginx运行在某个cpu上,这里这台虚拟机只有一个cpu,所以注释掉
worker_rlimit_nofile 51200;      #nginx进程打开文件数目,可设定大一点
#error_log  logs/error.log;  #定义错误日志,在编译时已指定位置,注释
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
#pid        logs/nginx.pid;#pid文件,编译时已指定位置
 
 
events {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
    use epoll;     #定义I/O模型
    worker_connections  51200;  #设定每个工作进程所处理的最大连接数.与main中的worker_processes决定了整个nginx能处理的最大连接数
}
 
http{
   include       mime.types;              #设定mime类型,类型由mime.type文件定义
   default_type  application/octet-stream;
   sendfile        on;  #sendfile
指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用,必须设为
on,如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的uptime. 
   keepalive_timeout  65;   #连接超时时间
   gzip  on;                #开启gzip压缩
   server {                 #server表示的是一个虚拟主机
        listen       80;    #监听端口
        server_name  10.204.80.75;  #虚拟主机名称,可以是ip或域名
        location / {          #通常用于server上下文中,用于设定某URI的访问属性。location可以嵌套。
            root   html;      #定义服务器网站根目录位置
            index  index.php index.html index.htm; #定义首页索引文件的名称,index.php是后加的
        }
        error_page   500 502 503 504  /50x.html;    #定义错误提示页面
        location = /50x.html {
            root   html;
        }
        location ~ \.php$ {        #定义.php结尾的文件解析
            root           html;
            fastcgi_pass   127.0.0.1:9000;    #定义解析php程序使用的FastCGI接口
            fastcgi_index  index.php;      #定义php程序首页索引文件名称
            fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html$fastcgi_script_name;
            include        fastcgi_params;
        }
   
  }
}

如上所示,php和nginx组合到一块了。

MySQL配置

MySQL我启用前面博客中搭建的drbd高可用mysql服务器,过程请见http://piao719.blog.51cto.com/287547/1562390

IP地址为:10.204.80.89

搭建ecshop

上传到/usr/local/nginx/html/ecshop 目录

Strict Standards: Non-static method cls_image::gd_version() should
not be called statically in \install\includes\lib_installer.php on line
31

解决:找到install/includes/lib_installer.php中的第31行   return
cls_image::gd_version();然后在找到include/cls_image.php中的678行,发现gd_version()方
法未声明静态static,所以会出错。这时候只要:

将function gd_version()改成static function gd_version()即可。

检测环境的时候提示:是否支持 JPEG是不支持的。

解决:查看发现有libjpeg.lib库,GD2库也有,都加载了,也都正常。查看ecshop源代码发现install/includes/lib_installer.php中第100行,JPEG写成了JPG,正确的应该是:

$jpeg_enabled = ($gd_info['JPEG Support']        === true) ? $_LANG['support'] : $_LANG['not_support'];

给cert、data、images、includes、temp、themes目录加777权限

# cd /usr/local/nginx/html/ecshop

# chmod -R 777 themes/ temp/ includes/ data/ cert/ images/

检查环境完成

配置系统

首先在10.204.80.89这台mysql服务器上创建ecshop数据库,然后添加一个帐号来管理这个数据库

mysql>create database ecshop;

mysql>grant all on ecshop.* to 'ecsuser'@'10.204.%.%' identified by "ecspass";

mysql>flush privileges;

然后照提示把所有信息填完整

安装数据库失败,提示date.timezone时区设置有问题,

修改/etc/php.ini里面的date.timezone = “Asia/Shanghai”时区,或都在php代码里面添加<?php date_default_timezone_set("PRC"); ?>这一句即可。安装完成

压力测试,这里只是用http自带的ab工具简单测试一下启用opcache缓存与不启用缓存的效果。

首先不启用php自带的opcache缓存器的测试结果如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright 2006 The Apache Software Foundation, http://www.apache.org/
 
Benchmarking 10.204.80.75 (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Finished 1000 requests
 
 
Server Software:        nginx/1.6.2
Server Hostname:        10.204.80.75
Server Port:            80
 
Document Path:          /ecshop/index.php
Document Length:        35726 bytes
 
Concurrency Level:      10
Time taken for tests:   53.620991 seconds
Complete requests:      1000
Failed requests:        0
Write errors:           0
Total transferred:      36078000 bytes
HTML transferred:       35726000 bytes
Requests per second:    18.65 [#/sec] (mean)
Time per request:       536.210 [ms] (mean)
Time per request:       53.621 [ms] (mean, across all concurrent requests)
Transfer rate:          657.06 [Kbytes/sec] received
 
Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0   21 250.2      1    3000
Processing:   135  513 103.2    544     887
Waiting:      129  499 101.0    531     868
Total:        136  535 271.5    545    3754
 
Percentage of the requests served within a certain time (ms)
  50%    545
  66%    561
  75%    571
  80%    577
  90%    597
  95%    618
  98%    645
  99%    739
 100%   3754 (longest request)

启用opcache,在/etc/php.ini文件中的[opcache]中添加

zend_extension=/usr/local/php55/lib/php/extensions/no-debug-non-zts-20121212/opcache.so

并把下面的这些参数打开

opcache.enable=1

opcache.enable_cli=1

opcache.memory_consumption=256

opcache.interned_strings_buffer=16

opcache.max_accelerated_files=5000

opcache.revalidate_freq=60

opcache.load_comments=1

上面这些参数在生产环境中可以根据实际的需要做出修改

重启php-fpm,再测试一下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
ab -n 1000 -c 10 http://10.204.80.75/ecshop/index.php
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
 
Benchmarking 10.204.80.75 (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
 
 
Server Software:        nginx/1.6.2
Server Hostname:        10.204.80.75
Server Port:            80
 
Document Path:          /ecshop/index.php
Document Length:        35733 bytes
 
Concurrency Level:      10
Time taken for tests:   16.035 seconds
Complete requests:      1000
Failed requests:        0
Write errors:           0
Total transferred:      36085000 bytes
HTML transferred:       35733000 bytes
Requests per second:    62.36 [#/sec] (mean)
Time per request:       160.347 [ms] (mean)
Time per request:       16.035 [ms] (mean, across all concurrent requests)
Transfer rate:          2197.69 [Kbytes/sec] received
 
Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    2   1.7      1      10
Processing:    66  158  73.7    155     885
Waiting:       53  148  72.9    145     873
Total:         66  160  73.7    157     886
 
Percentage of the requests served within a certain time (ms)
  50%    157
  66%    168
  75%    173
  80%    176
  90%    186
  95%    195
  98%    208
  99%    739
 100%    886 (longest reque

可以看出来启用opcache缓存的效果比不启用的结果想比,响应时间少了70%,所以php开启opcode是非常有必要的 。

转载:http://piao719.blog.51cto.com/287547/1581240/

搭建LNMP发布ecshop系统及压测启用opcache缓存与否的情况的更多相关文章

  1. 案例 | 荔枝微课基于 kubernetes 搭建分布式压测系统

    王诚强,荔枝微课基础架构负责人.热衷于基础技术研发推广,致力于提供稳定高效的基础架构,推进了荔枝微课集群化从0到1的发展,云原生架构持续演进的实践者. 本文根据2021年4月10日深圳站举办的[腾讯云 ...

  2. <转>二十问全链路压测干货汇总(上)

    本文转载自:微信公众号-数列科技<二十问全链路压测干货汇总(上)> 最近几年全链路压测无疑成为了一个热门话题,在各个技术峰会上都可以看到它的身影. 一些大型的互联网公司,比如阿里巴巴.京东 ...

  3. 性能压测诡异的Requests/second 响应刺尖问题

    最近一段时间都在忙着转java项目最后的冲刺,前期的coding翻代码.debug.fixbug都逐渐收尾,进入上线前的性能压测. 虽然不是大促前的性能压测要求,但是为了安全起见,需要摸个底心里有个数 ...

  4. Jmeter5 实现多机集群压测(局域网组成多机集群)

    想要模拟高并发用户访问的场景,用Jmeter5实现的话,单靠一台PC机,资源是不够的,包括单机的内存.使用端口数量等,所以最好是通过多台PC机组成几个集群来对服务器进行压测. 本文目录: 1.软硬件配 ...

  5. 压测2.0:云压测 + APM = 端到端压测解决方案

    从压力测试说起 压力测试是确立系统稳定性的一种测试方法,通常在系统正常运作范围之外进行,以考察其功能极限和隐患.与功能测试不同,压测是以软件响应速度为测试目标的,尤其是针对在较短时间内大量并发用户的访 ...

  6. 高德全链路压测平台TestPG的架构与实践

    导读 2018年十一当天,高德DAU突破一个亿,不断增长的日活带来喜悦的同时,也给支撑高德业务的技术人带来了挑战.如何保障系统的稳定性,如何保证系统能持续的为用户提供可靠的服务?是所有高德技术人面临的 ...

  7. Jmeter与压测相关概念

    相关概念 RT(response time) 什么是RT? RT就是指系统在接收到请求和做出相应这段时间跨度 但是值得一提的是RT的值越高,并不真的就能说明我们的系统的吞吐量就很高, 比如说,如果存在 ...

  8. Jmeter让压测随时做起来(转载)

    为什么要压测 这个问题问的其实挺没有必要的,做开发的同学应该都很清楚,压测的必要性,压力测试主要目的就是让我们在上线前能够了解到我们系统的承载能力,和当前.未来系统压力的提升情况,能够评估出当前系统的 ...

  9. 性能工具之Jmeter压测Hprose RPC服务

    概述 Hprose(High Performance Remote Object Service Engine),国人开发的一个远程方法调用的开源框架.它是一个先进的轻量级的跨语言跨平台面向对象的高性 ...

随机推荐

  1. java反射与代理模式

    流程age: 饭前洗手----> 吃饭 --->饭后洗碗 //吃饭 public interface Dinner { //吃饭方法 public void haveDinner(); } ...

  2. 20169210《Linux内核原理与分析》第十一周作业

    第17章 设备与模块 关于设备驱动和设备管理,讨论四种内核成分. 设备类型:在所有的linux系统中为了统一普遍设备的操作所分的类. 模块:Linux内核中用于按需加载和卸载目标码的机制. 内核对象: ...

  3. UML 2中结构图的介绍

    原文: http://www.ibm.com/developerworks/cn/rational/rationaledge/content/feb05/bell/ 这是关于统一建模语言.即UML 里 ...

  4. ios调打电话代码

    // 定义点击拨号按钮时的操作 - (void)callAction{ NSString *number = @"";// 此处读入电话号码 // NSString *num = ...

  5. socket编程——一个简单的样例

    从一个简单的使用TCP样例開始socket编程,其基本过程例如以下: server                                                  client ++ ...

  6. 混合模式程序集是针对“v1.1.4322”版的执行时生成的,在没有配置其它信息的情况下,无法在 4.0 执行时中载入该程序集。

    看到一个kinect大牛编写的一个水果忍者的体感游戏版本号,让我为自己一直以来仅仅用现有的网页游戏来模拟kinect体感游戏控制感到羞愧,没办法.我还是菜鸟.学习一段后自己模仿星际大战这个游戏.自己写 ...

  7. Android开发_Gson解析

    //转换器 GsonBuilder builder = new GsonBuilder(); // 不转换没有 @Expose 注解的字段 builder.excludeFieldsWithoutEx ...

  8. [React Native] Basic iOS Routing -- NavigatorIOS

    Inside the app component, we use NavigatiorIOS to render the compoent: class githubnotetaker extends ...

  9. 常用加密算法的Java实现总结(二) ——对称加密算法DES、3DES和AES

    1.对称加密算法 1.1 定义 对称加密算法是应用较早的加密算法,技术成熟.在对称加密算法中,数据发信方将明文(原始数据)和加密密钥(mi yue)一起经过特殊加密算法处理后,使其变成复杂的加密密文发 ...

  10. android弧形进度条,有详细注释的,比较简单

    Java code? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ...