#Linux: Find who is using your resources

By | January 29, 2021

Another post that focuses on some smart one liners in Linux.

Who is using my port ?

[voina@fedora config]$ ss -tulpn | grep 7080
tcp   LISTEN 0      4096                *:7080             *:*    users:(("java",pid=1852219,fd=329))

ss is the new replacement for netstat. Same parameters can be used but gives more information.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.