You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Torsten Krah <tk...@fachschaft.imn.htwk-leipzig.de> on 2006/03/01 18:33:56 UTC

RE: Bootstrap class - Interface bind - Problem there again.

Problem is there again - after few minutes in working state, a new
process shows up with following call:

/opt/java/bin/java -server -showversion -Xms640M -Xmx640M -verbose:gc
-XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC
-Xloggc:/var/logs/gc.log -Djava.awt.headless=true
-Djava.endorsed.dirs=/opt/tomcat/common/endorsed
-classpath /opt/java/lib/tools.jar:/opt/tomcat/bin/bootstrap.jar
-Dcatalina.base=/var/tomcat -Dcatalina.home=/opt/tomcat
-Djava.io.tmpdir=/var/tomcat/temp org.apache.catalina.startup.Bootstrap
start

tcp6       0      0 :::41276                :::*
LISTEN     12320/java

I guess the number of them will grow with time.

The server.xml is defined so:

<Server port="8005" shutdown="SHUTDOWN" debug="0">


  <Listener
className="org.apache.catalina.mbeans.ServerLifecycleListener"
            debug="0"/>
  <Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
            debug="0"/>

  <GlobalNamingResources>

    <Environment name="simpleValue" type="java.lang.Integer"
value="30"/>

    <Resource name="UserDatabase" auth="Container"
              type="org.apache.catalina.UserDatabase"
       description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
      <parameter>
        <name>factory</name>

<value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
      </parameter>
      <parameter>
        <name>pathname</name>
        <value>conf/tomcat-users.xml</value>
      </parameter>
    </ResourceParams>

  </GlobalNamingResources>

  <Service name="Tomcat-Standalone">

    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8080" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="20000"
               useURIValidationHack="false" address="127.0.0.1" />
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8009" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="20000"
               useURIValidationHack="false" address="127.0.0.1"

protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <Engine name="Standalone" defaultHost="localhost" debug="0">
      <Logger className="org.apache.catalina.logger.FileLogger"
              prefix="catalina_log." suffix=".txt"
              timestamp="true"/>
      <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
                 debug="0" resourceName="UserDatabase"/>
      <Host name="localhost" debug="0" appBase="/var/apps"
       unpackWARs="true" autoDeploy="true">
        <Logger className="org.apache.catalina.logger.FileLogger"
                 directory="logs"  prefix="localhost_log." suffix=".txt"
                timestamp="true"/>
      </Host>
    </Engine>
  </Service>
</Server>

The connectors got both the address option.

So whats that for a process and how do i stop tomcat from doing that,
something wrong with server.xml?

thx for any suggestions.


kind regards


Torsten


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org