Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please anyone give me the command of restart or start tomcat6 in ubuntu.

share|improve this question
sudo service tomcat6 restart – Marius Butuc Mar 10 at 18:08

closed as off topic by C. Ross, Matteo, birryree, Greg Bacon, DaveRandom Dec 21 '12 at 16:37

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 26 down vote accepted

if you are using extracted tomcat then,

startup.sh and shutdown.sh are two script located in TOMCAT/bin/ to start and shutdown tomcat, You could use that

if tomcat is installed then

/etc/init.d/tomcat5.5 start
/etc/init.d/tomcat5.5 stop
/etc/init.d/tomcat5.5 restart
share|improve this answer
4  
If tomcat was installed as a service, you can also try service tomcat6 {stop|start|restart} – Chris White Apr 21 '12 at 16:55
@ChrisWhite How to differentiate if tomcat is installed as service or otherwise? – coding crow Aug 14 '12 at 12:55
Depends on your *nix install - what are you running on? – Chris White Aug 15 '12 at 13:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.