-
-
Save maszd/c5ea45ebfc31fc0a817cb2b55327d15e to your computer and use it in GitHub Desktop.
How to install php memcached on CentOS 6.5
This file contains 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 characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment