Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

port 8080 already in use

netstat -ano | findstr 8080
Comment

Error: That port is already in use.

# list the running ports
$ netstat -ltnp
# kill specific port in my case for django 8000. kill using PID
$ kill -9 31434
Comment

port 8080 already in use

taskkill /F /pid 1088
Comment

port 8080 already in use

lsof -i :8080 //returns the PID (process id) that runs on port 8080
kill 1234 //kill the process using PID (used dummy PID here)
lsof -i :8443
kill 4321
Comment

PREVIOUS NEXT
Code Example
Shell :: error mounting dev sdb1 at media on ubuntu 
Shell :: installing saas in react application 
Shell :: install drush 
Shell :: apache basic auth setup 
Shell :: angular 
Shell :: rerun supervisor 
Shell :: git log by date 
Shell :: ubuntu edit etc host 
Shell :: sshpass mac os x brew 
Shell :: transfer files to cluster 
Shell :: get folder size powershell 
Shell :: php 7.4 all extensions 
Shell :: shell hide tab 
Shell :: psycopg2 error install 
Shell :: how to uncommit in git 
Shell :: set selinux centos 
Shell :: terminal find file by extension recursive 
Shell :: ssh-keygen 
Shell :: how to close a port mac 
Shell :: pip install txt 
Shell :: git set url with user name and password 
Shell :: check if mongodb is running mac 
Shell :: ubuntu install vboxguest 
Shell :: stop git 
Shell :: streamlink save to mp4 
Shell :: clementine linux download 
Shell :: apache config location 
Shell :: install flask on ubuntu 
Shell :: command stop emulator android studio 
Shell :: input bash 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =