Environment:
IIS 7.5
Tomcat 7.037
AJP/1.3 connector (redirector.dll) v 1.2
Java 7

We have a requirement for a new intranet application that it use Windows 
authentication.  We have this working in our new application.  We do have IIS, 
the connector and Tomcat serving up the application with no problems.

What did happen is that we discovered that the manager application that comes 
with Tomcat no longer is accessible.  We have some staff that use the manager 
app routinely.
We did try to set up two AJP connectors, one defined in the server.xml with 
tomcatAuthentication="true" and another set to false.   In the AJP property 
files we set the second one to only be mapped to the manager URL.  This did not 
work as we expected.

Anyone have any ideas on how to get the manager application working?

Excerpt from server.xml:
___________________________________________________
  <GlobalNamingResources>
    <Resource auth="Container" description="User database that can be updated 
and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" 
name="UserDatabase" pathname="E:\Tomcat\32Bit\7.0.37\conf\tomcat-users.xml" 
type="org.apache.catalina.UserDatabase"/>
  </GlobalNamingResources>
  <Service name="Catalina">
    <Connector connectionTimeout="12000" maxThreads="300" port="10000" 
protocol="AJP/1.3" tomcatAuthentication="false"/>
                <Connector connectionTimeout="12000" maxThreads="300" 
port="10005" protocol="AJP/1.3" tomcatAuthentication="true"/>
                <Connector connectionTimeout="20000" port="9080" 
protocol="HTTP/1.1" redirectPort="8443"/>
    <Engine defaultHost="localhost" jvmRoute="WA1" name="Catalina">
      <Realm className="org.apache.catalina.realm.LockOutRealm">
        <Realm className="org.apache.catalina.realm.UserDatabaseRealm" 
resourceName="UserDatabase"/>
      </Realm>
      <Host appBase="webapps" autoDeploy="true" name="localhost" 
unpackWARs="true">
        <Valve className="org.apache.catalina.valves.AccessLogValve" 
directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" 
prefix="localhost_access_log." suffix=".txt"/>
      </Host>
    </Engine>
  </Service>


Excerpt from worker.properties file
______________________________________________
worker.list=WA1,MGR

worker.WA1.type=ajp13
worker.WA1.host=localhost
worker.WA1.port=10000
worker.WA1.connection_pool_size=300
worker.WA1.connection_pool_timeout=12

worker.MGR.type=ajp13
worker.MGR.host=localhost
worker.MGR.port=10005
worker.MGR.connection_pool_size=300
worker.MGR.connection_pool_timeout=12

Excerpt from uriworkermap.properties:
___________________________________________________
/manager|/*=MGR

R. Mark Harris

Reply via email to