You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2008/06/10 18:09:57 UTC

DO NOT REPLY [Bug 45179] New: Tomcat does not answer nor send any information in catalina.log

https://issues.apache.org/bugzilla/show_bug.cgi?id=45179

           Summary: Tomcat does not answer nor send any information in
                    catalina.log
           Product: Tomcat 5
           Version: 5.5.20
          Platform: PC
        OS/Version: Windows Vista
            Status: NEW
          Severity: critical
          Priority: P2
         Component: Catalina
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: olivier.fourel@gmail.com


calls to ${web_app_path}/jsp/sample.jsp or ${web_app_path}/jsp/sample.html

does not return anything , the request finally ends in a time out.

catalina.out does not either log anything

Tests were done with :

in a browser : ${web_app_path}  http://.../webapp/
on local console : ${web_app_path} = wget http://localhost:../


server.xml is


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

    <!-- Comment these entries out to disable JMX MBeans support used for the
 administration web application -->
    <Listener className="org.apache.catalina.core.AprLifecycleListener"/>
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
    <Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
    <Listener
className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>

    <GlobalNamingResources>

        <!-- Test entry for demonstration purposes -->
        <Environment name="simpleValue" type="java.lang.Integer" value="30"/>

        <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml"/>

    </GlobalNamingResources>

    <Service name="Catalina">

        <!-- Define a non-SSL HTTP/1.1 Connector on port 8180 -->
        <Connector port="8180" maxHttpHeaderSize="8192"
                   maxThreads="150" minSpareThreads="10" maxSpareThreads="20"
                   enableLookups="false" acceptCount="300" URIEncoding="UTF-8"
                   connectionTimeout="600000" disableUploadTimeout="true"
                   maxKeepAliveRequests="-1"/>

        <Connector port="8009" maxHttpHeaderSize="8192"
                   maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
                   enableLookups="false" redirectPort="8443" acceptCount="100"
                   connectionTimeout="20000" disableUploadTimeout="true"
                   proxyName="services-pp.sampleserver.fr" URIEncoding="UTF-8"
                   proxyPort="80"/>

        <Connector port="9443" maxHttpHeaderSize="8192" scheme="https"
                   maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
                   enableLookups="false" redirectPort="8443" acceptCount="100"
                   connectionTimeout="20000" disableUploadTimeout="true"
                   proxyName="services-pp.sampleserver.fr" URIEncoding="UTF-8"
                   proxyPort="443"/>

        <!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
        <Connector port="8443"
                   maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
                   enableLookups="false" disableUploadTimeout="true"
                   acceptCount="100" debug="0" scheme="https" secure="true"
                   clientAuth="false" sslProtocol="TLS" URIEncoding="UTF-8"
                   keystoreFile="/etc/user/ssl/cert/localstore"
                   SSLCertificateFile="/etc/user/ssl/cert/localhost.cert"
                   keypass="ééééééééééééé"/>

        <!-- Define the top level container in our container hierarchy -->
        <Engine name="Catalina" defaultHost="localhost" jvmRoute="sn00">

            <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
                   resourceName="UserDatabase"/>

            <Host name="localhost" appBase="webapps"
                  unpackWARs="true" autoDeploy="true"
                  xmlValidation="false" xmlNamespaceAware="false">

                <Cluster
className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
                        
managerClassName="org.apache.catalina.cluster.session.DeltaManager"
                         expireSessionsOnShutdown="false"
                         useDirtyFlag="true">

                    <Membership
                           
className="org.apache.catalina.cluster.mcast.McastService"
                            mcastAddr="239.255.0.1"
                            mcastPort="45564"
                            mcastFrequency="500"
                            mcastDropTime="3000"
                            mcastTTL="1"/>

                    <Receiver
                           
className="org.apache.catalina.cluster.tcp.ReplicationListener"
                            tcpListenAddress="auto"
                            tcpListenPort="4001"
                            tcpSelectorTimeout="100"
                            tcpThreadCount="6"/>

                    <Sender
                           
className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
                            replicationMode="synchronous"/>

                    <Valve
className="org.apache.catalina.cluster.tcp.ReplicationValve"
                          
filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>

                    <ClusterListener
className="org.apache.catalina.cluster.session.ClusterSessionListener"/>

                </Cluster>
            </Host>
        </Engine>
    </Service>
</Server>


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179


Mark Thomas <ma...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




--- Comment #1 from Mark Thomas <ma...@apache.org>  2008-06-10 09:19:33 PST ---
This looks like a configuration issue. Please use the users list to debug.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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


DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179


Olivier <ol...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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


DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179





--- Comment #2 from Olivier <ol...@gmail.com>  2008-06-10 10:03:31 PST ---
Tank you for your advice, could you provide a link to explain the "user list to
debug" ?


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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


DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179


Olivier <ol...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         OS/Version|Windows Vista               |Linux
         Resolution|INVALID                     |REMIND




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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