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
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
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
You could to use the following commands
rpm -qa | grep memcached
rpm -e namerpm