HOW TO: Restart your Tomcat server ? Print

  • 4

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



Was this answer helpful?

« Back