Inactive Tutor answered 10/12/22
Tutor
New to Wyzant
I would recommend shutting down all tomcat processes. Because it's a server, it's likely spinning up multiple processes that respawn whenever one is killed. You can try the following command to kill all tomcat processes:
killall -9 tomcat
The -9 flag forces the process to terminate immediately.