Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to close port 3000 running

### For Linux/Mac OS search (sudo) run this in the terminal:
$ lsof -i tcp:3000
$ kill -9 PID

### On Windows:
netstat -ano | findstr :3000
tskill typeyourPIDhere 

### change tskill for taskkill in git bash
Comment

kill port 3000

kill $(lsof -t -i:3000)
Comment

PREVIOUS NEXT
Code Example
Shell :: vlc not working in ubuntu 
Shell :: install node js ubuntu 
Shell :: remove git from folder 
Shell :: generate ssh key linux ed25519 
Shell :: install openjdk8 in ubuntu 
Shell :: find empty files linux 
Shell :: pip install pyscopg2 
Shell :: git config user 
Shell :: installing gnome tweak tool 
Shell :: revert local commit git bash 
Shell :: ubuntu install clamav 
Shell :: kubectl list context 
Shell :: docker to sudoers 
Shell :: rvm set default 
Shell :: git force pull 
Shell :: firebase with react 
Shell :: remmina ubuntu 
Shell :: ubuntu check ssh login log 
Shell :: how to speedtest on bash 
Shell :: git update submodule 
Shell :: how to kill tasks using grep 
Shell :: clear bash history 
Shell :: how to run flutter on google chrome 
Shell :: download woeusb for ubuntu 20.04 
Shell :: generate service ionic 
Shell :: install material-ui 
Shell :: git clone fatal: unable to access SSL certificate problem: self signed certificate in certificate chain 
Shell :: ubuntu certbot nginx 
Shell :: count the number of lines in a git repository 
Shell :: adding jars to classpath in linux 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =