My host asked me to: " You will need to remove all instances of memcached that you have installed. "

How would i go about doing this?

I am on CentOS

link|improve this question
What are you doing? rpm -qa | grep memcached? find /usr/local/ -name memcached? – quanta Sep 25 '11 at 11:05
feedback

1 Answer

If you wish to remove all instances of memcached from your CentOS server use yum to accomplish this task:

Use yum list to check for memecached instances:

yum list | grep memcached

Use yum deplist to check the list of dependances of this package before removing:

yum deplist memcached

Use yum remove to remove the package:

yum remove memcached
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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