设为首页 收藏本站
查看: 810|回复: 0

[经验分享] 编译安装lamp

[复制链接]

尚未签到

发表于 2018-12-15 06:31:00 | 显示全部楼层 |阅读模式
  ***********安装xcache,为php加速*******************
  

  unzip -o PHPMyAdmin-4.0.5-all-languages.zip

  mv PHPMyAdmin-4.0.5-all-languages /usr/local/apache/htdocs/pma
  1,压力测试:
  ulimit -n 3000
  ab -c 100 -n 2000 http://10.10.37.138/pma/index.php 十个并发,发两千个请求
  [root@localhost local]# ulimit -n 3000
  [root@localhost local]# ab -c 100 -n 2000 http://10.10.37.138/pma/index.php
  This is ApacheBench, Version 2.3
  Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
  Licensed to The Apache Software Foundation, http://www.apache.org/
  

  Benchmarking 10.10.37.138 (be patient)
  Completed 200 requests
  Completed 400 requests
  Completed 600 requests
  Completed 800 requests
  Completed 1000 requests
  Completed 1200 requests
  Completed 1400 requests
  Completed 1600 requests
  Completed 1800 requests
  Completed 2000 requests
  Finished 2000 requests
  

  

  Server Software:        Apache/2.4.9服务器软件版本
  Server Hostname:        10.10.37.138请求的服务器地址
  Server Port:            80服务器端口
  

  Document Path:          /pma/index.php
  Document Length:        7794 bytesURL的大小
  

  Concurrency Level:      100并发请求
  Time taken for tests:   103.874 seconds整个测试经过的时长
  Complete requests:      2000一共2000的请求
  Failed requests:        0
  Total transferred:      17925162 bytes包含首部和数据
  HTML transferred:       15588000 bytes总共传输的数据
  Requests per second:    19.25 [#/sec] (mean)每秒钟完成的请求数
  Time per request:       5193.681 [ms] (mean)每一批(100个)请求需要的时间
  Time per request:       51.937 [ms] (mean, across all concurrent requests)每一个请求消耗的时间
  Transfer rate:          168.52 [Kbytes/sec] received传输速率
  

  Connection Times (ms)连接时间
  min  mean[+/-sd] median   max
  Connect:        0   11  58.9      0     497连接建立
  Processing:  2445 5139 1298.0   4850   17286请求处理
  Waiting:     2445 5111 1303.1   4820   17285等待数据从磁盘加载完成并相应
  Total:       2445 5150 1301.4   4858   17286
  

  Percentage of the requests served within a certain time (ms)
  50%   4858
  66%   5165
  75%   5410
  80%   5590
  90%   6274
  95%   7209
  98%   9036
  99%  11075
  100%  17286 (longest request)
  sync
  

  2,下载xcache-3.1.2.tar.bz2百度搜索即可
  解压解包并编译安装
  [root@localhost php]# man -M man/ phpize
  /usr/local/php/bin/phpize 编译第三方扩展是都需要执行
  ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config
  make && make install
  安装结束后会出现如下信息:
  Installing shared extensions:    /usr/local/php/lib/php/extensions/no-debug-zts-20100525/
  3,配置:
  [root@localhost xcache-3.1.2]# mkdir /etc/php.d
  [root@localhost xcache-3.1.2]# cp xcache.ini /etc/php.d/
  [root@localhost xcache-3.1.2]# vi /etc/php.d/xcache.ini
  extension = /usr/local/php/lib/php/extensions/no-debug-zts-20100525/
  4,再做压力测试:
  http://10.10.37.138/pma/index.php 刷新几次生成缓存
  再执行测试
  ab -c 100 -n 2000 http://10.10.37.138/pma/index.php
  Requests per second:    80.13 [#/sec] (mean)
  Time per request:       1248.033 [ms] (mean)
  Time per request:       12.480 [ms] (mean, across all concurrent requests)
  安装xcache之前的速度
  Requests per second:    19.25 [#/sec] (mean)
  Time per request:       5193.681 [ms] (mean)
  Time per request:       51.937 [ms] (mean, across all concurrent requests)
  速度上能快三倍多
  Requests per second:    21.97 [#/sec] (mean)
  Time per request:       4552.375 [ms] (mean)
  Time per request:       45.524 [ms] (mean, across all concurrent requests)
  适用于读的多,写的少的服务器类型
  





运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-651468-1-1.html 上篇帖子: Yaconf 下篇帖子: PHP课程总结20161129
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表