在RHEL4系统中配置LVS负载均衡群集


在RHEL4系统中配置LVS负载均衡群集
在RHEL4系统中配置LVS负载均衡群集
2007-07-13 kenthy#qingdaonews.com
################################################################
系统环境:RHEL4 [ 2.6.9-5.EL ]
软件环境:
    linux-2.6.22.1.tar...

    Apache (httpd)服务器防DDOS模块mod_evasive的使用说明

在服务器管理中,经常遇到DDOS攻击WWW服务器。对于Apache(httpd)服务器来说,防御DDOS是通过mod_evasive来实现的。本文将介绍mod_evasive模块的安装、配置;

    自动安装配置lighttpd小脚本


# Version 0.0.1.1 - P-DX44
yum -y remove httpd
yum -y install pcre-devel

mkdir ~/src
cd ~/src
#下载安装包,自己修改相应的地址即可
wget http://***/install/lighttpd-1.4.13.tar.gz

tar xzvf lighttpd-1.4.13.tar.gz
cd lighttpd-1.4.13
./co...

    nginx安装过程记录

去官网下载nginx到本地
unzip nginx-php-1.zip
unzip nginx-php-2.zip
cd nginx-php
tar zxvf libiconv-1.11.tar.gz
cd libiconv-1.11/
./configure --prefix=/usr/local
make
make install
cd ../

tar zxvf freetype-2.3.5.tar.gz
cd freetype-2.3.5/
...

    Nginx 0.5.33 + PHP 5.2.5(FastCGI)搭建胜过Apache 10倍的Web服务器

  前言:本文为我2007年9月写过的文章《Nginx 0.5.31 + PHP 5.2.4(FastCGI)搭建可承受3万以上并发连接数,胜过Apache 10倍的Web服务器》的第2版,经过了多台服务器的测试,修正了PHP iconv和gd库冲突的BUG,增加了PHP mcrypt、memcache扩展,修改了PHP和Nginx编...