lets see if you have everything right:
You have installed tomcat from an install available from the tomcat
website??
I assume yes - so that is out of question that the install file in corrupt.
SO probably you opted for a custom install and checked out that u did NOT
want examples to be installed. If that is true then it explains why you do
not have examples and other folders under webapps.
Ok - tomcat console having only those 4 lines is ok - every version comes
with its own messages - and I could swear that there was a tomcat version
that showed only that much.
The Socket exception - I too get it - but that is only when my database is
down ( I use mysql btw) - but since you have not yet deployed any
application let alone configure it with oracle - I would rule out any
databse probelms as of now.
So u can do this to quickly check if tomcat is up or not.
under webapps directory (there is one I suppose under TOMCAT_HOME/!!)
create a folder called
root
under root create another folder called
WEB-INF
in WEB-INF create an empty file called
web.xml
{enter this info into web.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
</web-app>
} no parantheses.
under the root folder previously created, create an empty file called
m.html
now restart tomcat and on a web browser address bar:
http://localhost:8080/m.html
If this still does not work, you need to make just one more change to
troubleshooot (and reach my wit's end)
stop tomcat
open server.xml
and add this line below the last <Context/> tag:
<Context path="/" docBase="webapps/root" debug="0"/>
then restart Tomcat
and give the same address on a browser.
It should work!!
HTH,
Anoop
On 4/29/05, Michelle Bruns <[EMAIL PROTECTED]> wrote:
>
> Hi there,
>
> I do not have a webapps/ROOT directory. It's not in my install ZIP
> file either. Creating a blank new one doesn't seem to change anything.
>
> According to my services file (BTW, I misspoke when I said Win2000,
> it's WinXP) I have no used ports at all in my 8000 range, although I
> know Oracle uses a couple, so I suppose this list isn't complete; am
> not enough of an admin to know how to check which ports are being
> used. However, changing the 8080 in server.xml to something else had
> no result. I changed it back, have made no other modifications to that
> file.
>
> ugh. My professor was having problems getting Tomcat to run properly
> on the lab machines at school (for which I blame campus sysadmins, not
> Tomcat!), and then told us all, "I promise it'll work at home..." I
> should've gotten it in writing.
>
>
> m
>
>
> On 4/29/05, Anto Paul <[EMAIL PROTECTED]> wrote:
> > The second error is with Tomcat manager application. If you dont need
> > this you can remove this application by moving manager.xml from
> > webapps directory.
> > You made any modifications to conf\server.xml ?. Do you have a
> > directory named ROOT in webapps folder. This will be installed by
> > default.
> > Tomcat uses some other ports other than 8080. One is shutdown port
> > 8005 and the other is Apache connector listening on port no 8009.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Thanks and best regards,
Anoop