Created
May 5, 2014 14:33
-
-
Save paul91/11538376 to your computer and use it in GitHub Desktop.
Revisions
-
paul91 created this gist
May 5, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ #!/bin/bash # How to install PHP memcached on CentOS 6.5 # Install dependencies yum install cyrus-sasl-devel zlib-devel gcc-c++ # Get the latest libmemcached wget https://launchpad.net/libmemcached/1.0/1.0.16/+download/libmemcached-1.0.16.tar.gz tar -xvf libmemcached-1.0.16.tar.gz cd libmemcached-1.0.16 # Compile and install liblmemcached with sasl disabled ./configure --disable-memcached-sasl make make install # After memcached's dependencies has been satisfied, install it with pecl pecl install memcached # Enable it for PHP echo "extension=memcached.so" > /etc/php.d/memcached.ini # Restart any PHP related daemons service httpd restart