Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

close port manually windows

Find Apps using specific Port in network

netstat -ano | findstr :8080

          // listening value
taskkill /pid 11740 /f
Comment

how to close a port

lsof -n -i4TCP:8080  <-- get process id of what you want to close
sudo kill -9 processID  <-- close desired process
Comment

PREVIOUS NEXT
Code Example
Shell :: sh read file line by line 
Shell :: how to access postgres CLI 
Shell :: wsl default user 
Shell :: how to uninstall lightshot in ubuntu 
Shell :: git commit number of lines changed 
Shell :: pip install upgrade all 
Shell :: download vs code in linux 
Shell :: bash script print array elements index and value 
Shell :: setup aws cli ubuntu 
Shell :: bash find all files containing string 
Shell :: chnage nvm default version 
Shell :: conda install more-itertools 
Shell :: mac m1 error running pod install 
Shell :: docker-compose permission denied 
Shell :: avoid github credentials 
Shell :: error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054 send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unexpectedly Everything up-to-date 
Shell :: random 6 digit number c# 
Shell :: linux count number of files in directory and subdirectory 
Shell :: install wine linux 
Shell :: npm install cli vue 
Shell :: add user to sudoers ubuntu 20.04 
Shell :: bash replace substring 
Shell :: show saved wifi password windows 
Shell :: Install the latest stable version of Mesa driver in Ubuntu 
Shell :: git commit only added files 
Shell :: Failed to fetch platform cordova-android@^8.0.0 
Shell :: [ERROR CRI]: container runtime is not running: output: 
Shell :: streamlink save file 
Shell :: kill process linux using port 
Shell :: angular localize install 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =