I have my own server application in C, I bind 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:
in the first case: localhost:webmin (LISTEN)
and, in the second case: localhost:20000 (LISTEN)
So instead of port 10000
there is webmin
. What does it mean? I found this. It says that Webmin is a web-based interface for system administration for Unix but that isn't enough clear explanation. So what webmin exactly mean?