Its quite simple to restart your Tomcat server instance. Just login to the server via SSH and use the following directions:
If you run the following commands on the command line you can restart your instance:
killall -9 java
(the above command will produce some errors, because you can only kill your instances, not everyone\'s - that is normal)
then:
/tomcat-users/yourname.com/bin/catalina.sh start
(replace yourname.com with your domain name.)
This command will start up tomcat.
- 0 Users Found This Useful
Related Articles
Tomcat won't recognize when I update (recompile) my classes, what do I do ?
There is an easy way to solve the problem of getting their JSP pages or servlets to recognize...
Where should I put my Java classes ?
Java classes need to be arranged in the proper directories in order for the Tomcat server to find...
Why aren't my java classes working in my JSP Pages ?
Is the bean you are accessing part of a package ? For instance: com.mycompany.Bean or are does...
HOW TO: Setup Java Servlets in my JSP/Servlet enabled web hosting account ?
To help you get started, we are providing an example web.xml and servlet class you can use to try...
What version of the JDK is installed ?
To see what version of the JDK is installed on your server run the following command that the SSH...