分类: BSD
2005-08-29 23:10:42
二. 安装Apache+tomcat
2.1下载必要的软件包
1、tar
2、jakarta-tomcat-connectors软件
3、automake软件
4、libtool软件
5、perl软件
6、m4软件
7、apr 软件
8、autoconf软件 ftp://ftp.sunfreeware.com/pub/freeware/sparc/8/autoconf-2.57-sol8-sparc-
local.gz
2.2 安装编译过程中需要的软件:
#gzip –d *.gz
#pkgadd –d *
2.3 安装Apache
将Apache软件包展开到一临时目录/export/home1下,编译apache。
#./configure --prefix=/export/home1/apache --enable-shared=max --enable-module=most --
enable-module=so
#make
#make install
2.4安装jakarta-tomcat-connectors
然后解开jakarta-tomcat-connectors-4.1.24-src.tar.gz,生成jakarta-tomcat-connectors-
4.1.12-src目录。
进入jakarta-tomcat-connectors-4.1.12-src/webapp的目录里,再把apr-0.9.1.tar.gz解到这个目录下,并
把刚生成的目录apr-0.9.1的目录名改成apr。
还是在webapp目录,运行以下命令:
# support/buildconf.sh
此时如果autoconf的版本低于2.52的话会报错退出,所以必须先安装autoconf-2.52。
当命令成功结束后会在当前目录下生成configure文件。
依次运行以下命令:
# ./configure --with-apxs=/export/home1/apache/bin/apxs
# make
# cp apache-1.3/mod_webapp.so /export/home1/apache/libexec
现在mod_webapp.so已经制作好了,并已经拷贝到apache的libexec目录下。
2.4配置apache
更改Apache配置文件/export/home1/apache/conf/httpd.conf加入如下内容:
LoadModule webapp_module libexec/mod_webapp.so
AddModule mod_webapp.c
WebAppConnection warpConnection warp localhost:8008
2.6测试apache和tomcat
127.0.0.1:80/ ,正常。
测试正常!