List Ports on Linux

阅读 53

2022-11-09


I have often suffered this painful thing.When I start a service but the destination port is always used.So I should list all open ports and kill the occupied application.
So This is a short tip for how to list open ports on Linux



sudo netstat -tulpn

Note sometimes you should grant the command for a enough access.
For a better understanding,please



man netstat

or navigate to ​​http://linux.about.com/od/commands/l/blcmdl8_netstat.htm​​

For Mac Users


1

sudo lsof -i -P | grep -i "listen"

Others

  • UNIX and Linux System Administration Handbook


精彩评论(0)

0 0 举报