apache下实现负载均衡一般都是结合tomacat来进行的。那么现在我们要介绍的内容是关于resin负载均衡的配置内容。同样也是在apache下实现和操作的。那么我们主要针对它的自带负载均衡模块来进行研究。现在就进入正题,来看一下环境和安装要求把。
apache+resin负载均衡实现的系统和环境:
redhat9andsolaris9
httpd-2.50
resin-3.06
pure-ftpd-1.0.17a.tar.gz
apache+resin负载均衡的安装软件:
1、安装apache:
#tarzxvfhttpd-2.49.tar.gz
#cdhttpd-2.49
#./configure--prefix=/usr/local/apache2--enable-so--with-mpm=worker
#make
#makeinstall
2、安装resin:
#tarzxvfresin-3.06.tar.gz
#cdresin03.06
#./configure--prefix=/usr/local/resin--with-apxs=/usr/local/apache2/bin/apxs
#make
#makeinstall
3、安装pureftp
#tarzxvfpure-ftpd-1.0.17a.tar.gz
#cdpure-ftpd-1.0.17a
#./configure--prefix=/usr/local/pureftpd
--without-inetd--with-puredb
--with-cookie--with-throttling
--with-ratios--with-quotas
--with-ftpwho--with-largefile
--with-welcomemsg
#make
#makeinstall
#mkdir/usr/local/pureftpd/etc
好了,到此我们的apache+resin负载均衡所需的软件都安装好了,环境也构建完毕。