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
|
feedback
|
|
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:
Use yum deplist to check the list of dependances of this package before removing:
Use yum remove to remove the package:
| |||
|
feedback
|
rpm -qa | grep memcached?find /usr/local/ -name memcached? – quanta Sep 25 '11 at 11:05