Linux安装redis及redis的php扩展。

本文介绍如何在Linux环境下安装Redis服务及其PHP扩展,并通过示例代码验证安装成功。包含使用yum安装Redis、配置开机启动、安装PHP Redis扩展及测试连接等步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

------ redis安装,启动服务,开机启动,打开redis客户端 ------

yum install -y redis

systemctl start redis

systemctl enable redis

redis-cli

 

------ 安装phpredis ------

 

pecl install redis-2.2.3

extension_dir = "/usr/lib64/php/modules/"

extension=redis.so 

 

------ 测试 ------

<?php
   //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: " . $redis->ping();
?>

 

posted on 2016-09-03 14:21  TsAihS 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/TsAihS/p/5836941.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值