search
HomeBackend DevelopmentPHP TutorialNotes on installing php Redis extension under Fedora, fedoraredis_PHP tutorial

Notes on installing php Redis extension under Fedora, fedoraredis

1. Install compilation tools

Copy code The code is as follows:

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

2. Install redis php-redis
Copy code The code is as follows:

# yum install redis php-redis

The installation is successful

Start redis

Copy code The code is as follows:

# sudo redis-server /etc/redis.conf

1. Download the php-redis zip installation package

https://github.com/nicolasff/phpredis

2. Find the PHP installation path

Command whereis phpize and whereis php-config to find the phpize and php-config paths

3. Generate configure

Copy code The code is as follows:
# /usr/bin/phpize

4. Compile and install

Copy code The code is as follows:

# ./configure --with-php-config=/usr/bin/php-config
# make && make install

5. Add the installed redis.so module

Copy code The code is as follows:

# vim /etc/php.ini

6. Restart apache or nginx

7. Test

Copy code The code is as follows:

$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$redis->set('test','hello world!');
echo $redis->get('test');

php adds redis extension

Check the error log~

php installation redis extension error

Your php is compiled with VC6

Your php_redis.dll is compiled with VC9
leading to incompatibility.
Find a VC6 php_redis.dll
or
reinstall a VC9 php
.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/874115.htmlTechArticleNotes on installing php Redis extension under Fedora, fedoraredis 1. Install the compilation tool and copy the code. The code is as follows: yum install wget make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Fedora、Rocky等基于RHEL的Linux发行版如何重置忘记的root密码?Fedora、Rocky等基于RHEL的Linux发行版如何重置忘记的root密码?Mar 19, 2024 pm 07:43 PM

本文不念将指导您通过简单的步骤在基于RHEL的Linux发行版(例如Fedora、CentOSStream、Rocky和AlmaLinux)中重置忘记的root密码。首先,重新启动系统,然后在grub引导菜单中选择您要引导的内核(通常是第一个选项),接着按下键盘上的相应键。在下一个屏幕上,您将看到以下内核启动参数,在这里找到以ro开头的行并在末尾添加参数rd.break,如图所示,然后按Ctrl+x键。在下一个屏幕上,您将进入紧急模式,此时按Enter键进入shell提示符。现在,请确保确认您重

如何在Fedora/RHEL/AlmaLinux/Rocky Linux/CentOS流上添加/删除内核引导参数/参数和GRUB引导脚本如何在Fedora/RHEL/AlmaLinux/Rocky Linux/CentOS流上添加/删除内核引导参数/参数和GRUB引导脚本Mar 20, 2024 pm 05:36 PM

在Fedora39+、RHEL9、AlmaLinux9、RockyLinux9和CentOSStream9Linux发行版上,您可以使用grubby程序管理GRUB引导条目。在本文中,我们将向您展示如何使用GRUBY在Fedora、RHEL、AlmaLinux、RockyLinux和CentOSStream上的GRUB引导项中添加/删除内核引导参数。我们还将向您展示如何在Fedora、RHEL、AlmaLinux、RockyLinux和CentOSStream上使用GRUBY添加/删除定制的GR

System76 tips Fedora Cosmic spin for 2025 release with Fedora 42System76 tips Fedora Cosmic spin for 2025 release with Fedora 42Aug 01, 2024 pm 09:54 PM

System76 has made waves recently with its Cosmic desktop environment, which is slated to launch with the next major alpha build of Pop!_OS on August 8. However, a recent post on X by System76 CEO, Carl Richell, has tipped that the Cosmic DE developer

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use