首页 > 编程 > JSP > 正文

在Linux下装PHP+JSP

2024-09-05 00:20:27
字体:
来源:转载
供稿:网友
  这里我使用的是apache_1.3.9;apachejserv-1.1b3;gnujsp1.0.0
  全部是tar.gz格式,
  tar -zxvf apache.tar.gz
  tar -zxvf apachejserv-1.1b3
  tar -zxvf gnujsp.tar.gz
  tar -zxvf jsdk.tar.gz
  cd apache_1.3.9
  ./configure --prefix=/www
  make install
  cd ../php-3.0.12
  ./configure --with-mysql=/mysql --with-apache=../apache_1.3.9 --enable-track-vars
  make
  make install
  cd ../apachejserv-1.1b3
  ./configure --prefix=/usr/local/jserv --with-apache-src=../apache_1.3.9 --with-jdk-home=/jdk117_v3 --with-jsdk=../jsdk/lib/jsdk.jar
  make install
  cd ../apache_1.3.9
  ./configure --prefix=/www --activate-module=src/modules/php3/libphp3.a --activate-module=/src/modules/jserv/libjserv.a
  make
  make install
  
  然后开始配置php(略)
  接着来配置jsp
  1.把gnujsp10.jar,servlet-2.0-plus.jar拷到/www/htdocs/servlets目录下
  2.修改jserv.conf,加上
  apjservaction .jsp /servlets/gnujsp
  apjservmount /java /root(这个目录主要是用来存放jsp生成的java
  和class文件,可视具体情况而定)
  4.修改jserv.properties,加入
  wrapper.classpath=/jdk117_v3/lib/classes.zip
  wrapper.classpath=/usr/local/jserv/libexec/apachejserv.jar
  wrapper.classpath=/home/riso/webserversrc/jsdk/lib/jsdk.jar
  wrapper.classpath=/www/htdocs/servlets/gnujsp10.jar
  wrapper.classpath=/www/htdocs/servlets/servlet-2.0-plus.jar
  5.修改zone.properties,加入
  servlet.gnujsp.code=org.gjt.jsp.jspservlet
  servlet.gnujsp.jspservlet.initargs=checkclass=true
  servlet.gnujsp.jspservlet.initargs=scratchdir=/home/httpd/java
  servlet.gnujsp.jspservlet.initargs=compiler=/jdk117_v3/bin/javac -encoding %encoding% -classpath %classpath% -d %scratchdir% -deprecation%source%
  当然,还要将jserv.conf文件include到httpd.conf中去
  cd /www/bin/
  ./apachectl start
  测试一下http://xxx.xxx.xxx.xxx/jserv/
  (先在jserv.conf文件中加入访问权限)
  成功!
  将gnujsp自带的三个例子文件拷贝到/www/htdocs下
  测试http://xxx.xxx.xxx.xxx/hello.jsp
  测试http://xxx.xxx.xxx.xxx/date.jsp
  测试http://xxx.xxx.xxx.xxx/snoop.jsp,欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表