Re: Webaccess doesn´t start after GW8 Update
afriedrich wrote:
>
> Netware 6.5
sorry for the what long delay in reply.
NetWare 6.5 works quite a bit different from Linux with the config
files so hence why I was directing you in the wrong direction.
Besides Massimo's suggestion, make sure tomcat is actually running.
If it is then try this:
Apache on NetWare uses the ajp13 connector to pass webaccess stuff onto
tomcat (see sys:\apache2\conf\GWApache2.conf).
This connector is defined in:
sys:\adminsrv\conf\mod_jk\workers.properties. see the section ajp13.
You'll find the post in here too where apache will try to connect to:
worker.ajp13.port=9010
worker.ajp13.host=127.0.0.1
worker.ajp13.type=ajp13
worker.ajp13.reply_timeout=180000
You'll then have to make sure tomcat listens on that port 9010 (in this
example). This is set in server.xml of your tomcat instance (tomcat4
for webaccess on netware).
Have a look at: sys:\tomcat\4\conf\server.xml
In this file you should find something similar to:
<!-- Define a Coyote AJP/1.3 Connector on port 9101 -->
<Connector className="org.apache.coyote.tomcat4.CoyoteConnect or"
port="9010" minProcessors="5" maxProcessors="250"
enableLookups="true"
acceptCount="10" debug="0" connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkC oyoteHandler" />
Make sure that the two ports match.
--
Cheers,
Edward
|