blob: 0f620774332b245d53f2ad7811f2365fe39be11d [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<title>Installing tomcat-connector in tomcat3.3</title>
</head>
<body>
<h2>Installing tomcat-connector in tomcat3.3</h2>
<ul>
<li> copy mx4j-jmx.jar ( or jmxri.jar ) to lib/common</li>
<li> copy tomcat-coyote.jar, tomcat33-coyote.jar, tomcat-jk2.jar,
tomcat-http11.jar to lib/container</li>
<li> replace lib/common/connector-util.jar with tomcat-util.jar</li>
<li> copy commons-logging-api.jar and tomcat33-resources.jar to lib/common</li>
<li> edit conf/modules.xml and insert:<br />
&nbsp; &lt;module name="CoyoteConnector"
&nbsp; javaClass="org.apache.coyote.tomcat3.CoyoteInterceptor2"/&gt; </li>
<li>edit conf/server.xml and replace Http10Connector and Ajp13Connector with: <br />
&nbsp; &lt;CoyoteConnector port="8080" /&gt;
&nbsp; <br /> and<br />
&nbsp; &lt;CoyoteConnector port="8009"
&nbsp; processorClassName="org.apache.jk.server.JkCoyoteHandler"/&gt;
</li>
</ul>
</body>
</html>