Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

kill port in mac

npx kill-port 8080
Comment

how to kill a port on mac

npx kill-port 3000
Comment

kill port from terminal on mac

sudo lsof -i :5955
ex returns: 
COMMAND  PID         USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
node    6957     someuser   28u  IPv6 0x85e555655e4ea0c3      0t0  TCP *:8091 (LISTEN)

sudo kill -9 6957
Comment

how to stop a port in macos

kill -9 port
Comment

PREVIOUS NEXT
Code Example
Shell :: nano for windows 
Shell :: git tag to previous commit 
Shell :: git clone repo with name 
Shell :: linux create folder 
Shell :: check gateway linux 
Shell :: install python 3.10 linux (multiple python versions) 
Shell :: installing plesk on linux 
Shell :: linux remove folder with content 
Shell :: install docker in ubuntu 
Shell :: Deleting or removing a directory or folder 
Shell :: enable virtualization mac pro 
Shell :: print environment variables linux 
Shell :: zsh: command not found 
Shell :: install apache2 linux 
Shell :: shebang line 
Shell :: checkout remote branch 
Shell :: gcloud set kubectl context 
Shell :: how to make history | grep in windows 
Shell :: add windows service powershell 
Shell :: git show list of stashes 
Shell :: linux curl follow redirect 
Shell :: base64 decode command line ubuntu 
Shell :: brew install jupyter 
Shell :: access wsl files from windows explorer 
Shell :: break line echo 
Shell :: install homebrew 
Shell :: get all branches git 
Shell :: bash if "-n" option 
Shell :: applescript open new terminal tab 
Shell :: hoe to install LAMP on ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =