: This article describes how to install phpredis in Linux. For more information about PHP tutorials, see. Phpredis is a redis extension of php. php code can operate redis databases only when phpredis is installed. The following describes how to install phpredis.
1. download phpredis and download it directly from the official git to the local directory (~ /Soft /)
Git clone https://github.com/jiangtong1125/phpredis.git (you can package and download it without Installing git)
2. go to the phpredis directory.
Cd ~ /Soft/phpredis/
3. run phpize,/usr/local/php/bin/phpize. (if multiple php versions exist locally, use the correct version)
4. Compile./configure -- with-php-c/local/php/bin/php-config
5. after compilation is completed, run make & make install to install the agent. the installation result is as follows:
6. go to the Red Line Icon directory and copy the redis. so file under the Directory to the php extension directory.
How to view the php extension directory? Execute phpinfo, extension_dir is,
Copy to this directory.
7. add extension = redis. so to php. ini.
8. restart apache and check phpinfo again.
Well done, have fun !!!!
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.
The above describes how to install phpredis in Linux, including some content. if you are interested in the PHP Tutorial.