You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Henri Gomez <hg...@apache.org> on 2002/10/02 12:20:44 UTC

JK 1.2.0 binaries for iSeries

Well it may be a premiere on Apache.

You could find an iSeries binary at:

http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.0/bin/iseries/

It's an OS400 SAVF, built on V5R1, but should works on V5R2,
which is zipped to save place.

On V5R1/V5R2 you should have the latest Apache 2.0 PTFs installed, the
one's which provide Apache 2.0.39.

Quicks instructions :

- Unzip MOD_JK.zip on you workstation (PC/Unix) and will get a MOD_JK.SAVF.

- Go to iSeries, create a SAVF enveloppe, ie :

CRTSAVF FILE(MYLIB/MOD_JK) TEXT('MOD_JK VERSION 1.2.0 iSeries')

- Send the MOD_JK file via ftp in binary into MYLIB.

- on iSeries restore SAVF :

RSTLIB SAVLIB(MOD_JK) DEV(*SAVF) SAVF(MYLIB/MOD_JK)

- You could use the new MOD_JK Apache module from the MOD_JK
   library :

# Apache Default server configuration
# LoadModule jk_module /QSYS.LIB/QHTTPSVR.LIB/QZTCJK.SRVPGM
LoadModule jk_module /QSYS.LIB/MOD_JK.LIB/MOD_JK.SRVPGM

- Or if you want to have it next to others Apache modules,
   you should copy the MOD_JK.SRVPGM to iSeries Apache 2.0.39
   module library :

    CRTDUPOBJ OBJ(MOD_JK) FROMLIB(MOD_JK) OBJTYPE(*SRVPGM)
TOLIB(QHTTPSVR) NEWOBJ(MOD_JK)

MOD_JK SRVPGM is now installed on iSeries Apache modules :

- You should next add MOD_JK module to one of your Apache Server
    instance by editing the Server Configuration and commenting
    IBM provided MOD_JK (QZTCJK.SRVPGM)

....

# Apache Default server configuration
# LoadModule jk_module /QSYS.LIB/QHTTPSVR.LIB/QZTCJK.SRVPGM
LoadModule jk_module /QSYS.LIB/QHTTPSVR.LIB/MOD_JK.SRVPGM

...

I recommand you to read the documentation about configuring
Apache 2.0 on iSeries at :

http://www-1.ibm.com/servers/eserver/iseries/software/http/product/gui.html





--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>