What is the mdbs_daemon, and why is it listening on port 800 on my server?

7,387

If you have a proxy server installed this could be a port used by squid. But it really could be anything.

Use this command to try to identify the service, not just guess it by port number, which is the default behavior of nmap :

nmap -p800 -sV your.hostname.or.ip

You can also use this to see the program "linked" to the port :

netstat -paln | grep :800
Share:
7,387

Related videos on Youtube

HorusKol
Author by

HorusKol

Updated on September 18, 2022

Comments

  • HorusKol
    HorusKol over 1 year

    While trying to resolve a ports issue on a staging server, I happened to run an nmap on our production server, and found that port 800 was open:

    800/tcp  open  mdbs_daemon
    

    I have no idea what mdbs_daemon is - I have googled the port number and the daemon, but can only find a discussion hinting that it is something to do with NFS, but I'm pretty sure I've not installed anything related to that on my Ubuntu 10.04 production server.

    I'm just not sure how concerned I should be at this unexpected port.

  • HorusKol
    HorusKol over 11 years
    ha - found that Apache was listening, and it was something I'd set up so that we could monitor the server status... thanks for the tips.