Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Have you tried connecting to them? Even a denial of access will prove your point. – Dereleased Nov 6 '09 at 22:43
Which OS are you running memcached on? – ss. Nov 6 '09 at 22:45
Linux - I should have specified. – kewpiedoll99 Nov 6 '09 at 22:52
Also, when I kill my own memcached process with the port I started it on, and try to connect to the port, I do get a denial of access. I am wondering if a process is hanging in some kind of corrupted state and therefore somehow blocking access to the port. – kewpiedoll99 Nov 6 '09 at 22:54

3 Answers

up vote 10 down vote accepted

try

netstat -ap | grep TheChosenPort

and see if anything is listening on those tcp or udp ports.

share|improve this answer
quick question, if there's something on port 8080 and you grep '80', wont that give a false positive? – Kieren Johnstone Oct 24 '11 at 19:07
Fyi this doesn't work on OS-X. (the question was for Linux) Try simoes answer. – Ben Roberts Nov 29 '12 at 1:01

To see if it is running you could also try telnetting into the port:

telnet localhost 11211

If this works you will see the following (telling you that the given port is open):

Connected to localhost.
Escape character is '^]'.

Now if memcached IS running you can see some basic stats by issuing the given command:

stats

If this fails you will know that memcached is not running.

share|improve this answer
Thanks, this helped – Brian Noah Jan 9 at 22:21

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:

% ./memcached
failed to listen on TCP port 11211: Address already in use
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.