roymosby.me

Finding and stopping stray server processes

Published: Sat, Aug 28, 2021

article hero image. Open file cabinet populated with folders full of papers
Image by Maksym Kaharlytskyi

When running servers from the terminal, it is often nice to know how to shut them down manually in case things go wrong or you lose a terminal window. To dime myself out, it's usually closing down a terminal window without stopping Browser Sync, Rails server, or Python's SimpleHTTPServer. We're all learning, right?

The easiest way to find and shut down that errant process is to examine what files are currently open. Enter the command lsof . The command is an abbreviation of "list open files" and reports currently open files and what processes are using them.

Using by itself is not enormously helpful since the list is always quite lengthy. Since most of the time the tools I am using are server-based, I can take advantage of the -i flag, which selects by IP, host, or port.

Below are a list of commonly used ports on my projects. Your list may differ but it would be handy to know ahead of time what ports your services work on.

When using the -i flag, there are 4 options that can be fed in, but we only need to focus on the last one, the service and port. The following is how the lsof command should be constructed.

lsof -i tcp:PORTNUMBER

Here it is in action, looking for a process on port 8080:

LSOF Command

After finding the errant process, take note of its PID. Use the kill command with the process number to stop it. There are various signals that tell how kill how agressive it should be when stopping a process. It defaults to -15 when none are provided, which allows the process to gracefully shut down. For unruly processes, use -9 which will kill the process.


kill 1234 #where 1234 is the PID
kill -9 1234

The kill command does not print anything back onto the screen. Use the lsof command again to confirm that the process no longer shows. If it is still running, it may be appropriate to use kill -9.

image of LSOF command and then kill command



Portrait of Roy

I'm open to work!

  • Hi all! I am seeking a remote engineer position that can leverage a unique history of IT experience with several years of developing web applications.
  • I've worked most recently with JavasScript, TypeScript, Python, PHP, and Ruby but am game to learn other scripted languages.
  • Most importantly, I am all about making positive impact at organizations that see inclusivity as a strength rather than an obligation.

If you have room on your team and need someone that can contribute beyond just code, hit me up!