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 :: depends: libssl1.1 (= 1.1.1) but it is not installable 
Shell :: find npmrc file ubuntu 
Shell :: you must sign up for private packages 
Shell :: how to check all origins of a git 
Shell :: how to install firebase in ubuntu 
Shell :: docker without sudo 
Shell :: bash remove characters from end of every line 
Shell :: show all processes linux 
Shell :: stop rebase git 
Shell :: sudo apt update ignore gpg signature 
Shell :: abnt linux keyboard 
Shell :: how to add remove origin url 
Shell :: browserrouter react not working install 
Shell :: how download google drive file with wget 
Shell :: turn on bluetooth terminal linux 
Shell :: install video studio code arm64 
Shell :: metasploit install kali linux 
Shell :: yarn install uuid 
Shell :: wsl sync clock time 
Shell :: linux zip a directory 
Shell :: corntab using nano 
Shell :: nx: command not found 
Shell :: arch linux code 
Shell :: check codedeploy agent status 
Shell :: check bash version 
Shell :: remove junk files from ubuntu via terminal 
Shell :: flutter doctor Xcode installation is incomplete; a full installation is necessary for iOS development. 
Shell :: How to grep for file name recursively with some file content 
Shell :: search guard docker 
Shell :: give permission to file ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =