Chuck Amadi wrote:
> Hakan Kutucu wrote:
>
>> Hi everybody,
>> I have succesed to install tomcat at windows 2000. But I couldn't run at
>> windows98. I think some classpath definitions are wrong. Which
>> configurations should I do in autoexec.bat and how? Thanks.
>>
>>
>> --
>> To unsubscribe: <mailto:[EMAIL PROTECTED]>
>> For additional commands: <mailto:[EMAIL PROTECTED]>
>> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>>
> Hi, there try these ensuring that the environment variables point yo
> your <install dir's> Strings
>
> set env varaible = dir \ String
>
> set PATH=C:\JDK1.3\bin;
> set TOMCAT_HOME=C:\jakarta-tomcat-3.2.2
> set CATALINA_HOME=C:\jakarta-tomcat-4.0.1
> set JAVA_HOME=C:\JDK1.3
> set JSSE_HOME=C:\JDK1.3\jre\jsse1.0.2\lib
>
>
>
> set WASP_HOME=C:\wasp-advanced
> set WASP_DEMO=C:\wasp_demo
>
> Hope this works
> Cheers Chuck Amadi
> IT Systems Programmer
>
>
> --
> To unsubscribe: <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
Hi, there i would like to remark that your port 8080 connector which is
located in your: jakarta-tomcat-3.2.2\conf\server.xml
has proberly laid claim to that port by default thus you must use a
different port preferable greater than 1024 for jakarta-tomcat-4.0.1.
As discribed in the Running.txt File in your Tomcat-4.0.1\Running.txt File
1) The most common hiccup is when another web server (or any process for
that
matter) has laid claim to port 8080. This is the default HTTP port that
Tomcat attempts to bind to at startup. To change this, open the file:
$CATALINA_HOME/conf/server.xml
...and search for '8080'. Change it to a port that isn't in use, and is
greater than 1024, as ports less than or equal to 1024 require superuser
access to bind to.
Restart Tomcat and you're in business. Be sure that you replace the
"8080"
in the URL you're using to access Tomcat. For example, if you change the
port to 1977, you would request the URL http://localhost:1977/.
Try the above as a process of elimination
Cheers Chuck Amadi
Systems Programmer
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>