The example in this article describes the Linux installation Redis extension of Php method. Share to everyone for your reference, specific as follows:
Note: Directory Permissions CHOMD 777-r
1. Installation Redis
Download: https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz
Upload phpredis-2.2.4.tar.gz to/usr/local/src directory
CD/USR/LOCAL/SRC #进入软件包存放目录
tar zxvf phpredis-2.2.4.tar.gz #解压
cd phpredis-2.2.4 #进入安装目录
/usr/local/php/ Bin/phpize #用phpize生成configure配置文件
./configure--with-php-config=/usr/local/php/bin/php-config #配置 make
# Compile make
install #安装
After the installation is complete, the following installation path appears
/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/
2. Configure PHP Support
Vi/usr/local/php/etc/php.ini #编辑配置文件, add the following on the last line
Add to
3 Restart Service
sudo service nginx restart
sudo/etc/init.d/php-fpm restart
I hope this article will help you with your Linux server configuration.