I am running a server application (written in C), that is bound to my server on localhost address 127.0.0.1 and let it listen in first case on port 10000 and in second case on port 20000
When I run command I lsof | grep IP in last column is:
- localhost:webmin (LISTEN) (first case)
- localhost:20000 (LISTEN) (second case)
So instead of port 10000 there is webmin.
What does this mean? I found this.
It says that Webmin is a web-based interface for system administration for Unix. This doesn't help me; why am I seeing webmin in my port list?
webminas an alias for that port number... – Reuben Feb 19 '12 at 23:47