0
点赞
收藏
分享

微信扫一扫

List Ports on Linux

楠蛮鬼影 2022-11-09 阅读 53
linuxsedunix


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 条评论