I'm using Tomcat 6.0 with the included web-server (Coyote) on a Linux(Suse) system. The download of static content is very slow (100kB > 30sec), although I'm directly connected to this machine via Ethernet and a simple 'ftp get' is pretty fast.
The server is downloading part of the content, then wait's, then downloads the next part etc. During the wait everybody (server, client) seems to be idle ???
I'could'nt find any specific configuration settings in server.xml for the connector. These are my settings:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="120000"
redirectPort="8443"
URIEncoding="UTF-8"/>
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8"/>
-->
Any ideas would be very welcome?
Thanks
The server is downloading part of the content, then wait's, then downloads the next part etc. During the wait everybody (server, client) seems to be idle ???
I'could'nt find any specific configuration settings in server.xml for the connector. These are my settings:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="120000"
redirectPort="8443"
URIEncoding="UTF-8"/>
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8"/>
-->
Any ideas would be very welcome?
Thanks