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 :: git merge by ssh key 
Shell :: capacitor icon and splash 
Shell :: git clone in gitpython 
Shell :: git remove from from repo and stop tracking 
Shell :: create and run docker registry 
Shell :: How to restart a service with systemctl command 
Shell :: kubectl install ubuntu 20.04 
Shell :: ubuntu show computer performance from terminal 
Shell :: how to send desktop notification in ubuntu 
Shell :: homebrew Unknown command: cask 
Shell :: how to push code to gitlab 
Shell :: count occurrences of word in file linux 
Shell :: how to completely remove blender from ubuntu 
Shell :: Fix the upstream dependency conflict, or retry 
Shell :: jasmine.clock().install() jest 
Shell :: npx cap sync Unable to find node_modules/@angular-eslint/builder 
Shell :: ubuntu auditd show process activity by rules 
Shell :: find all the git repos recursivelty 
Shell :: size of folder linux 
Shell :: install gnu grep on mac 
Shell :: git config --global remove 
Shell :: npm command not found 
Shell :: ubuntu screen remove 
Shell :: create tar file appwrite 
Shell :: ubuntu remove user 
Shell :: extract tar 
Shell :: downgrade npm package to specific version 
Shell :: virtual box config networkt config ubuntu 
Shell :: android studio adb path mac 
Shell :: how to install wps office in ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =