博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tcMalloc 配置和优化 nginx 高性能
阅读量:6115 次
发布时间:2019-06-21

本文共 1440 字,大约阅读时间需要 4 分钟。

tcMalloc优化nginx 
记住:nginx一定要先启动
1>下载安装libunwind:
#wget  http://download.savannah.gnu.org/releases/libunwind/libunwind-0.99.tar.gz
wget  http://download.savannah.gnu.org/releases/libunwind/libunwind-0.99-alpha.tar.gz
tar -zxvf libunwind-0.99-alpha.tar.gz
cd libunwind-0.99-alpha
CFLAGS=-fPIC  ./configure
make CFLAGS=-fPIC
make CFLAGS=-fPIC install
 
2>下载安装Google-perftools
wget  http://soft.7dot.com/soft/google-perftools-1.8.tar.gz
tar  -zxvf  google-perftools-1.8.tar.gz
cd google-perftools-1.8
./configure
make  &&  make install
echo "/usr/local/lib"  >  /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
 
3>又一次编译nginx(使nginx支持Google-perftools)
cd nginx-1.2.8
./configure  --with-google_perftools_module  --with-http_stub_status_module 
 
 
#./configure \
#> --with-google_perftools_module  --with-http_stub_status_module    #--prefix=/usr/local/nginx
 
 
make 
make install
 
4> 为google-perftools 加入线程文件夹
mkdir /tmp/tcmalloc
chmod 0777 /temp/tcmalloc 
 
5> 改动nginx主配置文件
cd  /usr/local/nginx/conf
改动nginx.conf 在pid这行加入以下代码
#pid logs/nginx.pid
#google_perftools_profiles /tmp/tcmalloc/
google_perftools_profiles /tmp/tcmalloc
 
 
检查nginx.conf配置是否正确
/usr/local/nginx/sbin/nginx  -t  -c   /usr/local/nginx/conf/nginx.conf
#/usr/local/nginx/sbin/nginx  -t  -c  /usr/local/nginx/sbin/conf/nginx.conf
 
重新启动nginx
/usr/local/nginx/sbin/nginx -s reload
#kill -HUP  cat /usr/local/nginx/logs/nginx.pid
ps ax  | grep nginx | grep -v grep   | awk  '{print $1}' | xargs  kill -9 
6>  验证
lsof -n | grep tcmalloc
 
 
  

转载地址:http://eivka.baihongyu.com/

你可能感兴趣的文章
hdu 5115(2014北京—dp)
查看>>
数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)...
查看>>
PHP读取日志里数据方法理解
查看>>
第五十七篇、AVAssetReader和AVAssetWrite 对视频进行编码
查看>>
Vivado增量式编译
查看>>
一个很好的幻灯片效果的jquery插件--kinMaxShow
查看>>
微信支付签名配置正确,但返回-1,调不出支付界面(有的手机能调起,有的不能)...
查看>>
第二周例行报告
查看>>
Spring学习(16)--- 基于Java类的配置Bean 之 基于泛型的自动装配(spring4新增)...
查看>>
实验八 sqlite数据库操作
查看>>
四种简单的排序算法(转)
查看>>
Quartz2D之着色器使用初步
查看>>
多线程条件
查看>>
Git [remote rejected] xxxx->xxxx <no such ref>修复了推送分支的错误
查看>>
Porter/Duff,图片加遮罩setColorFilter
查看>>
黄聪:VMware安装Ubuntu10.10【图解】转
查看>>
Centos 6.x 升级openssh版本
查看>>
公式推♂倒题
查看>>
vue实现点击展开,点击收起
查看>>
如何使frame能居中显示
查看>>