logo
SearchAll PostsTagsNotesAuthor
instagramtwitterfacebookyoutubelinkedinmailgithubrss
Copyright © 2026 All rights reserved.
•
VIKI
Built with Vikramaditya Singh
Built with
VIKI - A posts created with Next.js and Tailwind.css

Port Wars: Hunt Down and Terminate Rogue Processes!

linux
code
snippet
December 23, 2024
Vikramaditya SinghVikramaditya Singh
0
Vikramaditya Singh

Vikramaditya Singh

twittergithublinkedin

Software engineer III at Oracle. I build high-performance web applications and write about the intersection of software engineering and human creativity.

View Portfolio →

You Might Also Like

#3
0
0

The Tar Command Chronicles: Bundle, Zip, and Conquer!

Dive into the magic of the tar command and uncover its most practical and time-saving uses.

tarlinuxcodesnippet
View SourceDec 20, 2024

My best stuff is in my email.

My goal is for it to be the most useful email you read that day.

No spam. Unsubscribe in one click.

Comments (0)

Loading comments...

On macOS use the command lsof -i with the port number to find out what is running on a specific port.

sudo lsof -i :<portnumber>

> This will work for linux as well ;)

Kill the process running on a specific port

use the kill command with the -9 option and the port PID number to kill a process

kill -9 <pid>