赞
踩
1.以root权限登录
apt-get install redis-server
ps -aux|grep redis
3.通过启动命令检查Redis服务器状态,执行:
netstat -nlt|grep 6379
4.安装Redis服务器,会自动地一起安装Redis命令行客户端程序。在本机输入redis-cli命令就可以启动,客户端程序访问Redis服务器。执行:
redis-cli
5.配置redis.conf(/etc/redis)最初将 daemonize设为 yes,开启后台即可
6.安装php-redis扩展
sudo apt-get install php5-redis
7.重启apache,是扩展生效
/etc/init.d/apache2 restart
<?php
$redis = new Redis();
$redis->connect("127.0.0.1", 6379);
echo "redis open success"
?>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。