vote up 1 vote down star

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?

flag

50% accept rate
Have you tried connecting to them? Even a denial of access will prove your point. – Dereleased Nov 6 at 22:43
Which OS are you running memcached on? – ss Nov 6 at 22:45
Linux - I should have specified. – kewpiedoll99 Nov 6 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 at 22:54

2 Answers

vote up 0 vote down check

try

netstat -ap | grep TheChosenPort

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

link|flag
vote up 0 vote down

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
link|flag

Your Answer

Get an OpenID
or

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