Skip to content

Instantly share code, notes, and snippets.

@dominikwilkowski
Last active March 23, 2025 06:01
Show Gist options
  • Save dominikwilkowski/764cab9922ad23cfd382596e563e8ab2 to your computer and use it in GitHub Desktop.
Save dominikwilkowski/764cab9922ad23cfd382596e563e8ab2 to your computer and use it in GitHub Desktop.
Find a hidden process that blocks a port/IP

To find a hidden process

List all node processes:

λ ps -e|grep node

List all leptos processes:

λ ps -e|grep [name of leptos project]

Output:

52333 ttys032    0:00.09 target/debug/codon
52379 ttys042    0:00.00 grep codon
# ^-- this is the PID

Kill it:

λ kill [PID]

Or force kill it:

λ kill -9 [PID]

https://stackoverflow.com/a/20091541/1043231

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment