apache+resin 的虚拟主机和负载均衡

80酷酷网    80kuku.com

  

  1、前言

  apache+resin来做想来大家都比较熟悉了,一般的配置都是很熟悉的了,我查看了一些论坛上的文章,这方便的文章比较多。在这里,我只要写写apache+resin实现独立的虚拟主机和resin自带的负载均衡。

  2、系统和环境:

  redhat9 and solaris9

  httpd-2.50

  resin-3.06

  pure-ftpd-1.0.17a.tar.gz

  3、安装软件:

  3.1、安装apache:

  # tar zxvf httpd-2.49.tar.gz

  # cd httpd-2.49

  # ./configure --prefix=/usr/local/apache2 --enable-so --with-mpm=worker

  # make

  # make install

  3.2、安装resin:

  # tar zxvf resin-3.06.tar.gz

  # cd resin03.06

  # ./configure --prefix=/usr/local/resin --with-apxs=/usr/local/apache2/bin/apxs

  # make

  # make install

  3.3、安装pureftp

  # tar zxvf pure-ftpd-1.0.17a.tar.gz

  # cd pure-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

  # make install

  # mkdir /usr/local/pureftpd/etc

  4、配置软件:

  目的:用apache和resin做基于域名的虚拟主机,启用resin自身的负载均衡的引擎。resin的负载均衡引擎实际上是可以启动多个java响应进程,通过内部机制来进行负载均衡。

  4.1、配置apache:

  # vi /usr/local/apache2/conf/httpd.conf



分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: