Showing posts with label netstat. Show all posts
Showing posts with label netstat. Show all posts

Saturday, 16 April 2016

start,stop tomcat server on linux

start tomcat server on linux

command : sudo service tomcat start

stop tomcat server on linux

command : sudo service tomcat start

Re-start tomcat server on linux

command : sudo service tomcat restart


Find Out Which Process Is Listening Upon a Port

check what port the tomcat server is using

use : netstat – a command-line tool that displays network connections, routing tables, and a number of network interface statistics.

ex : netstat -tulpn

REF: cybercitz