当前位置:Linux教程 - Php - 如何在Linux下装PHP+JSP的

如何在Linux下装PHP+JSP的



        
    我是如何在Linux下装PHP+JSP的


    这里我使用的是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
    发布人:netbull 来自:JJ的Linux世界