jay n gaba wrote:
>try checking the log.
>
>On Sun, 03 Feb 2002 Ashutosh Shah wrote :
>
>>Hi everybody,
>>
>>Here is my problem.
>>
>>I loaded Tomcat successfully on a Windows 2000 platform
>>setting the
>>environment variables
>>CATALINA_HOME: c:\jakarta-tomcat-4.0
>>JAVA_HOME: c:\jdk1.3
>>CLASSPATH: C:\jakarta-tomcat-4.0\common\lib\servlet.jar
>>
>>Then I went on the DOS prompt and gave the command
>>c:\jakarta-tomcat-4.0\bin\startup.bat.
>>
>>At this time, another DOS window pops up for a second
>>and then goes
>>away. However on the parent DOS window, I receive a
>>message:
>>
>>c:\jakarta-tomcat-4.0\bin\startup.bat
>>Using CATALINA_BASE: c:\jakarta-tomcat-4.0
>>Using CATALINA_HOME: c:\jakarta-tomcat-4.0
>>Using CATALINA_TMPDIR: c:\jakarta-tomcat-4.0\temp
>>Using JAVA_HOME: c:\jdk1.3
>>
>>When I try going to http://localhost:8080 I get a 'Page
>>cannot be displayed
>>error'.
>>
>>I dont know what I am doing wrong. Please help.
>>
>>Thank you,
>>Ash.
>>
>>
>>--
>>To unsubscribe: <mailto:tomcat-user-unsubscribe@jakart-
>>a.apache.org>
>>For additional commands: <mailto:tomcat-user-help@jakart-
>>a.apache.org>
>>Troubles with the list: <mailto:tomcat-user-owner@jakart-
>>a.apache.org>
>>
>
>
>
>--
>To unsubscribe: <mailto:[EMAIL PROTECTED]>
>For additional commands: <mailto:[EMAIL PROTECTED]>
>Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
Sorry to hear that as you should then get the following below after a
successful installation of Tomcat .
I am lead to believe it's your two connectors.
Note that this takes a short period of time in my case about ten seconds
but this can take a bit longer depending on your Environment .
Starting service Tomcat-Standalone
Apache Tomcat/4.0
Starting service Tomcat-Aoache
Apache Tomcat/4.0
Thus if you don't get this above you may have a problem with your two
connector instances in you <tomcat_home/conf/server.xml>
Thus check your <Connector > tag's as below Please note that i mhave
usesd different ports as my tomcat3.3a is defaulted to port 8080.
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080(6666) -->
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="6666" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="7777"
acceptCount="10" debug="0" connectionTimeout="60000"/>
<!-- Note : To disable connection timeouts, set connectionTimeout value
to -1 -->
<!-- Define an SSL HTTP/1.1 Connector on port 8443(7777) -->
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="7777" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0" scheme="https" secure="true">
<Factory className="org.apache.catalina.net.SSLServerSocketFactory"
clientAuth="false"
keystoreFile="C:/WINDOWS/Profiles/chucka/.keystore"
keystorePass="test123"
protocol="TLS"/>
</Connector>
I hope this helps
Cheers Chuck Amadi
Systems Programmer
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>