views:

214

answers:

2

Hello,

I've an interesting problem about start/restart of tomcat 5.5

I've deployed n webapps on my tomcat. All webapps work correctly.

Every time when I restart tomcat, never happen that all webapps starts.

If I "click" manually over tomcat manager start link of that webapp no started, that webapp start.

Can anyone suggest me any solution or idea for resolve this problem?

Thanks so much!

Tommy

+1  A: 

I have had issues with restarting tomcat in that the server does not finish stopping tomcat before it starts it again. Sometimes this results in port conflicts, but more commonly just bizarre behavior. I now make it standard practice to stop tomcat, verify no running tomcat/java processes (unix: ps, windows: taskmgr) and then start tomcat back up.

jt
A: 

See if this is of any help :

Tomcat Web Application Manager How To

(Though it is for version 4.4, you can search more on that website)

Ravi