Not able to run Webapplication Starting of Tomcat failed error

Not able to run Webapplication Starting of Tomcat failed error , the server port 8084 is already in use.while running my web application 2nd time i am geting this error.how to solve it?
[213 byte] By [NikisinProblema] at [2007-11-27 8:41:25]
# 1
> > how to solve it?Stop the first instance from running.
cotton.ma at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 2
i have already stop that one
NikisinProblema at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 3
> i have already stop that oneNo, no you haven't.If you had there wouldn't be a port conflict.
cotton.ma at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 4
Why dont you once change the port number and try.
achyuthba at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 5
> Why dont you once change the port number and try.That will treat the symptom but not the underlying cause. So really not a very good solution I don't think.
cotton.ma at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 6
still after stoping app i have problem
NikisinProblema at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 7
> still after stoping app i have problemYOU HAVE NOT STOPPED IT YETIf it was stopped it would not be running and bound to that port.
cotton.ma at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...
# 8

Not able to run Webapplication

Starting of Tomcat failed error , the server port 8084 is already in use.

while running my web application 2nd time i am geting this error.

how to solve it?

Ist way ::

Go to cmd prompt

and check the active ports via cmd ::

netstat -ao

it'll show u which all applications that are using various ports. So u can easily find out the the appliction that is using port 8084. Go to task manager and close the application.

[ this port is usually used by yahoo messenger. sign out from messenger or close the application that is using ur port. ]

2nd way

Chage the port.

nitin_talwara at 2007-7-12 20:40:22 > top of Java-index,Java Essentials,New To Java...