Make sure memcached is not running.
ps auxw | grep memcached
If you find any process, kill it with kill -9(to make sure that it is REALLY killed):
kill -9 insert-your-PID-of-running-memcached-here
If you still cannot start memcached, see if there is anything else on port 11211:
netstat -A -n | grep 11211
In addition, these questions relate to Serverfault because it is not a programming issue.
source
share