Uninstall all instances of memcached

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

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

Attribution
Source : Link , Question Author : XLima , Answer Author : Dave

Leave a Comment