下面来简单说下安装nginx时的简单优化(没有涉及到后期的优化)
一、编译安装前优化
1.关闭debug模式
在NGINX源码文件被解压后,修改auto/cc/gcc这个文件
#debug
CFLAGS=" $CFLAGS -g"
注释掉这行,也可以删除!
2.指定特定CPU型号编译优化
--with-cc-opt='-O3'
--with-cpu-opt=CPU #有这几种类型 pentium,pentiumpro,pentium4,athlon opteron,amd64,sparc32,sparc64,ppc64等
如何确定:
cat /proc/cpuinfo |grep "model name"
3.利用tcmalloc优化nginx性能
到此站下载:http://mirror.yongbok.net/nongnu/libunwind/
tar zxvf libunwind-version.tar.gz
cd libunwind-version
CFLAGS=-fPIC ./configure
make CFLAGS=-fPIC
make CFLAGS=-fPIC install
PS:最新的1.0版本安装可能会问题!!
安装google-perftools 加速--tcmalloc
可以从此站下载:http://code.google.com/p/google-perftools/
tar zxvf gperftools-version.tar.gz
cd gperftools-version
./configure
make && make install
echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
重新编译安装nginx
编译时加上 --with-google_perftools_module 这个选项
./configure --with-google_perftools_module --user=www --group=www --
prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre --lock-path=/var/run/nginx.lock --pid-path=/var/run/nginx.pid
make && make install
为google-erftools添加线程目录
mkdir /tmp/tcmalloc
chmod 0777 /tmp/tcmalloc
修改nginx主配置文件nginx.conf
在server以上位置加入如下语句:
google_perftools_profiles /tmp/tcmalloc;
重启启动nginx,再验证运行状态
lsof -n | grep tcmalloc
二、关闭不用的服务
略