Home > Database > Redis > body text

How to install redis extension in PHP under Linux

PHPz
Release: 2023-05-29 14:01:33
forward
1486 people have browsed it

Description:

Operating system: CentOS

php installation directory:/usr/local/php

php.ini configuration file path:/usr/local/php /etc/php.ini

Nginx installation directory:/usr/local/nginx

Nginx website root directory:/usr/local/nginx/html

linux php installation Specific steps for redis extension

1. Install the compilation tool

yum install wget make gcc gcc-c zlib-devel openssl openssl-devel pcre-devel kernel keyutils patch perl

2 , Install 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 #Enter the software package storage directory

tar zxvf phpredis-2.2.4.tar.gz #Unzip

cd phpredis-2.2.4 #Enter the installation directory

/usr/local/php/bin/phpize #Use phpize to generate the configure configuration file

./configure –with-php-config= /usr/local/php/bin/php-config #Configuration

make #Compile

make install #Installation

After the installation is completed, the following installation path appears

/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/

3. Configure php support

vi /usr/local/ php/etc/php.ini #Edit the configuration file and add the following content in the last line

Add

extension="redis.so"

:wq! #Save and exit

4. Test

vi /usr/local/nginx/html/index.php #Edit

phpinfo();

?>

:wq! #Save and exit

Open index.php in the browser, as shown below, you can see redis related information

How to install redis extension in PHP under Linux

The above is the detailed content of How to install redis extension in PHP under Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!