How to install PHP7 Redis extension on CentOS7

How to install PHP7 Redis extension on CentOS7

Introduction

In the previous article, we installed and configured Redis, but it is not over yet. We also need to install the PHP extension.

Installing the extension

Note: The first use of non- root user did not succeed, and using the root user will succeed

  1. Download the extension package, find the matching version here, and use wget to download it to the server
  2. Unzip and enter the directory tar zxf redis-4.0.1.tgz , cd redis-4.0.1 ;
  3. Find phpize and execute

Find php-config and configure

make && make install . After compilation, redis.io is already in the /usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/ extension directory.

Modify php.ini and add extension=redis

Restart PHP

php -m 

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed tutorial on installing php-fpm service/extension/configuration in docker
  • Detailed explanation of installation and configuration of Redis and phpredis extension operation in Ubuntu 18.04 system
  • Detailed steps to install xml extension in php under linux
  • Solve the problem that PHP extension installation does not take effect
  • Detailed installation of PHP environment and extensions on Mac
  • Mac pecl installation php7.1 extension tutorial
  • Detailed explanation of how to install PHP curl extension under Linux
  • How to install memcache extension in PHP
  • How to install BCMath extension in PHP
  • PHP extension installation method and steps analysis

<<:  Summary of common problems and application skills in MySQL

>>:  How to implement the builder pattern in Javascript

Recommend

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...

Talk about how to identify HTML escape characters through code

Occasionally you'll see characters such as &#...

MySQL 8.0.13 manual installation tutorial

This article shares the manual installation tutor...

Tutorial on installing MYSQL8.0 on Alibaba Cloud ESC

Open the connection tool. I use MobaXterm_Persona...

Detailed explanation of transaction isolation levels in MySql study notes

background When we talk about transactions, every...

MySQL database basic syntax and operation

MySQL database basic syntax DDL Operations Create...

JavaScript single thread and asynchronous details

Table of contents 1. Task Queue 2. To explain som...

MySQL 8.0.12 winx64 detailed installation tutorial

This article shares the installation tutorial of ...

MySQL trigger simple usage example

This article uses examples to illustrate the simp...

Analysis of MySQL's method of exporting to Excel

This article describes how to use MySQL to export...

JS native 2048 game source code sharing (the latest on the Internet)

I have been learning about algorithms recently an...

Ubuntu Server Installation Tutorial in Vmware

This article shares with you the Ubuntu server ve...

Exploring the Linux Kernel: The Secrets of Kconfig

Get a deep understanding of how the Linux configu...

How to modify mysql permissions to allow hosts to access

Enable remote access rights for mysql By default,...

vue3+ts+EsLint+Prettier standard code implementation

Table of contents use Use of EsLint Add a profile...