Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu check process on port

sudo lsof -i:22
Comment

find process id of port ubuntu

$ sudo netstat -ltnp | grep -w ':80'
Comment

how to find process running on port in ubuntu

sudo lsof -i:8080
Comment

list which process is running on specific port ubuntu

sudo netstat -ltnp | grep -w ':80' 
#port_number: 80
#output: tcp6       0      0 :::80                   :::*                    LISTEN      1907/nginx: master 
Comment

ubuntu get process on port

lsof -i -P -n
Comment

PREVIOUS NEXT
Code Example
Shell :: npm install nuxt global 
Shell :: get all wifi password by terminal linux 
Shell :: ubuntu install imagemagick 
Shell :: install telnet mac 
Shell :: how to install react router dom with typescript 
Shell :: loop from array bash 
Shell :: flush dns cache mac os 
Shell :: › Error: Missing required flag: › -a, --app APP app to run command against › See more help with --help 
Shell :: get length of array bash 
Shell :: cannot find lock /var/lib/dpkg/lock-frontend 
Shell :: how to check if django is installed in ubuntu 
Shell :: how to close port 3000 running 
Shell :: how to remove samba ubuntu 
Shell :: linux watchers limit 
Shell :: git config location 
Shell :: git cancel last commit 
Shell :: linux memory cache clear 
Shell :: ram usage in linux 
Shell :: how to restart heroku server 
Shell :: powershell arry initialize add 
Shell :: install go ubuntu 
Shell :: adb for ubuntu 
Shell :: delete postmaster.pid mac 
Shell :: sqlite laravel 
Shell :: curl install pip 
Shell :: gitigore rm cache 
Shell :: update powershell using cmd windows 10 
Shell :: nodemon install 
Shell :: how to stop running port in ubuntu 
Shell :: kubectl change namespace 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =