Comment by joeconway
6 years ago
From the article:
"To shut down the web server, run lsof -i :19421 to get the PID of the process, then do kill -9 [process number]. Then you can delete the ~/.zoomus directory to remove the web server application files."
Does osx not have the fuser command? It lets you find and kill a process by its tcp port (also file handles) in one command.
On Linux I use something like 'fuser -k 19421/tcp' to kill server processes all the time. It is super useful when working with local dev servers etc!
It does, but unfortunately without the -k flag.