2011/10/21 randy <[email protected]>
>
> neither work, so do i need to specify libevent differently?
>
> Thanks for any help
>

Hi Randi,

I am using Centos 5.7 and I make this small recipe for install memcached on
my machines:

mkdir ~/memcache; cd ~/memcache;

# Install libevent
wget --no-check-certificate
https://github.com/downloads/libevent/libevent/libevent-2.0.15-stable.tar.gz
tar xvfz libevent-*-stable.tar.gz
cd libevent-*-stable
./configure; make; make install; cd ../;

# Install memcached
wget http://memcached.googlecode.com/files/memcached-1.4.9.tar.gz
tar xvfz memcached-*.tar.gz
cd memcached-*
./configure --with-lib-event=/usr/local/; make; make install; cd ../;

# For PHP (if you need)
wget http://pecl.php.net/get/memcache-3.0.6.tgz
tar xvfz memcache-*.tgz
cd memcache-*;phpize;
./configure; make; make install

-- 
* Blog*: www.shakaran.net*
 Quijost: *cheap and professional spanish hosting www.quijost.com
<http://www.quijost.com>
 <http://www.twitter.com/shakaran87>
<http://www.facebook.com/angel.guzman.maeso>
   <http://es.linkedin.com/in/angelguzmanmaeso>
<https://launchpad.net/~shakaran>

Reply via email to