redis - phpredisadmin

【基本介绍】
这里介绍安装redis查看工具phpredisadmin

【基本按照】
phpRedisAdmin:
[url]https://github.com/ErikDubbelboer/phpRedisAdmin[/url]
predis
[url]https://github.com/nrk/predis[/url]

0.前提
php安装redis模块,并且webserver支持php

1.安装

git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git
cd phpRedisAdmin/
cat README.markdown
git submodule init
git submodule update


2.配置
config.inc.php
$config = array(
'servers' => array(
array(
'name' => '10.xx.xx.xx:6300', // Optional name.
'host' => '10.xx.xx.xx',
'port' => 6300,
'filter' => '*',
),



3. 如果没有用git,那么拷贝phpredisadmin到webserver根目录后还要拷贝predis到phpredisadmin目录下面
4. 有时候要检查系统的enforce

【参考引用】
[url]http://www.douban.com/note/246191125/[/url]
[url]http://blog.csdn.net/vfloyd/article/details/7432933[/url]

你可能感兴趣的:(cached,redis,phpredisadmin,predis)