centos 6.3 64bit 用tcmalloc优化nginx

 一,tcmalloc全称thread-caching malloc,是谷歌开发的开源工具。与标准的glibc库的malloc比。tcmalloc在内存分配效率和速度比malloc高。至于为什么比malloc,有兴趣可以参考。下面这个网址。


  1. http://www.mysqlops.com/2011/06/14/google-tcmalloc-malloc.html#more-737 

二,现在开始介绍在64bit centos 6.3的版本中让nginx使用tcmalloc。需要用到的软件都已经上传到附件中。
三,安装libunwind库。


  1. # tar xf libunwind-1.0.tar.gz 
  2. # tar xf libunwind-1.0 
  3. #CFLAGS=-fPIC ./configure添加编译参数 
  4. # make CFLAGS=-fPIC 
  5. # make CFLAGS=-fPIC install 
这样执行会出现如下错误:

  1. libtool: install: error: relink `libunwind-setjmp.la' with the above command before installing it 
  2. make[3]: *** [install-libLTLIBRARIES] Error 1 
  3. make[3]: Leaving directory `/down/libunwind-1.0/src' 
  4. make[2]: *** [install-am] Error 2 
  5. make[2]: Leaving directory `/down/libunwind-1.0/src' 
  6. make[1]: *** [install] Error 2 
  7. make[1]: Leaving directory `/down/libunwind-1.0/src' 
  8. make: *** [install-recursive] Error 1 

产生这种问题的原因:autotools兼容性的问题,运行命令autoreconf -i -f  ,在重新编译安装下。


  1. #autoreconf -i -f 
  2. #make clean 
  3. #CFLAGS=-fPIC ./configure 
  4. #make  CFLAGS=-fPIC  
  5. #make  CFLAGS=-fPIC install 

四,安装gpperftools:


  1. #tar xf  gperftools-2.0.tar.gz 
  2. # cd gperftools-2.0 
  3. #./configure  
  4. #make && make install  
这样安装会会报如下错误:

  1. cc1plus: warning: unrecognized command line option "-Wno-unused-result" 
  2. ake: *** [stacktrace.lo] Error 1 

为什么出现在这种错误,因此是64bit系统,至于更深度的解释,安装说明中有。下面重新编译。


  1. #make clean  
  2. #./configure  --enable-frame-pointers  
  3. #make &&  make install  
  4. #echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf 
  5. #ldconfig 

五,编译pcre,使nginx支持http rewrite。


  1. # tar xf pcre-8.10.tar.gz  
  2. # cd pcre-8.10 
  3. # ./configure 
  4. # make && make install 

六,编译nginx


  1. # tar xf nginx-1.2.3.tar.gz  
  2. # ./configure  \
  3. --with-http_ssl_module \ 
  4.   --with-http_flv_module \ 
  5.   --with-http_stub_status_module \ 
  6.   --with-http_gzip_static_module \ 
  7.   --http-client-body-temp-path=/var/tmp/nginx/client/ \ 
  8.   --http-proxy-temp-path=/var/tmp/nginx/proxy/ \ 
  9.   --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \ 
  10.   --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ 
  11.   --http-scgi-temp-path=/var/tmp/nginx/scgi \ 
  12.   --with-pcre \ 
  13.   --with-google_perftools_module 
  14. # make && make install 

7,为gperftools创建线程目录


  1. #mkdir /tmp/tcmalloc 
  2. #chmod 0777 /tmp/tcmalloc 

8,修改nginx的配置文件


  1. #vim /usr/local/nginx/conf/nginx.conf 
  2. #pid        logs/nginx.pid; 
  3. google_perftools_profiles /tmp/tcmalloc;添加这一行 

9,启动nginx,并验证tcmalloc有没有正常加载


  1. # /usr/local/nginx/sbin/nginx 
  2. # lsof -n |grep tcmalloc 
  3. nginx      1893    nobody    9w      REG              253,0        0      43018 /tmp/tcmalloc.1893 
  4. nginx      1894    nobody   11w      REG              253,0        0      43016 /tmp/tcmalloc.1894 

至此已经替换成功。










本文转自 deng304749970 51CTO博客,原文链接:http://blog.51cto.com/damondeng/992645,如需转载请自行联系原作者
上一篇:怎么在Eclipse中添加VI插件


下一篇:关于子类父类对象强制转换问题