Created
September 25, 2021 09:28
-
-
Save woodRock/68e7a7afca6b9030705167f40a45d476 to your computer and use it in GitHub Desktop.
Kill any process that is running on port 3000. Particularly useful for an HTTP server running an React application with NPM on Debian Linux.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# Author: Jesse Wood | |
# Date: 2021-09-25 | |
# | |
# This script kills processes on the 3000 port. | |
# The default port for running react applications. | |
# Get the pid for processes running on port 3000. | |
id=`lsof -i tcp:3000 | grep '*:3000' | cut -d " " -f 5` | |
# Check if process exists? | |
if [ -z "${id}" ]; then | |
# No pid on port 3000 exists. | |
echo "Port 3000 is not in use."; | |
else | |
# Kill the process. | |
kill -9 "${id}"; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment