Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

check services running on port linux

one of those:
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo ss -tulpn | grep LISTEN
sudo lsof -i:22 ## see a specific port such as 22 ##
sudo nmap -sTU -O IP-address-Here
Comment

how to check services running on port 8080 in linux


$ lsof -i :8080

COMMAND   PID   USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
java    10165 mkyong   52u  IPv6 191544      0t0  TCP *:http-alt (LISTEN)
Comment

PREVIOUS NEXT
Code Example
Shell :: install datetime 
Shell :: install psycopg2 ubuntu 
Shell :: unzip centos 
Shell :: uncompress tar.xz linux 
Shell :: install elixir ubuntu 
Shell :: how to install kite in ubuntu 
Shell :: install pyzbar on linux 
Shell :: how to speedtest on bash 
Shell :: delete local branch 
Shell :: Update submodules 
Shell :: sudo: /etc/sudoers is owned by uid 1001, should be 0 sudo: no valid sudoers sources found, quitting 
Shell :: capacitor resources 
Shell :: install wine ubuntu 
Shell :: lightgbm install 
Shell :: delete .git folder 
Shell :: git change commit message of old commit 
Shell :: install reach router 
Shell :: number of files in subdirectories linux 
Shell :: inkscape ubuntu ppa 
Shell :: linux list services 
Shell :: Error: Unable to resolve module `react-native-screens` from `node_modules/@react-navigation/bottom-tabs/src/views/BottomTabView.tsx`: react-native-screens could not be found within the project. 
Shell :: stop minikube 
Shell :: uninstall mongodb ubuntu 
Shell :: git show origin 
Shell :: debian create user 
Shell :: check git url 
Shell :: heroku select appp 
Shell :: expo start release mode 
Shell :: vim wsl copy to windows system clipboard 
Shell :: use vscode as default file editor for filezilla ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =