I am having some problems with memcached and one idea I am having is that perhaps it is already running on the port I am trying to run it on, started by some other user on our network. Is there a way to tell what memcached ports are currently in use?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
try netstat -ap | grep TheChosenPort and see if anything is listening on those tcp or udp ports. |
|||||
|
|
To see if it is running you could also try telnetting into the port:
If this works you will see the following (telling you that the given port is open):
Now if memcached IS running you can see some basic stats by issuing the given command:
If this fails you will know that memcached is not running. |
|||
|
|
|
If you're asking this question, it sounds like you're running a really old version. If you did this on a recent version, you'd see this:
|
|||
|
|