码迷,mamicode.com
首页 > Web开发 > 详细

Ubuntu14安装redis及phpredis扩展及配置

时间:2017-11-03 21:52:55      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:min   conf   new   server   store   div   string   扩展   predis   

安装redis

sudo apt-get install redis-server

 

安装phpredis

sudo apt-get install php5-redis

 

配置redis开机自启

http://blog.csdn.net/echo_follow_heart/article/details/51594722

 

配置Auth和远程访问

/etc/redis下的redis.conf文件

修改 # requirepass foobared 为 requirepass youpass

例如

技术分享

 

注释掉bind 127.0.0.1

技术分享

保存,重启redis服务

技术分享

tp上检验代码

 1 namespace Admin\Controller;
 2 use Think\Controller;
 3 class RedisController extends Controller {
 4     
 5     public function index() {
 6         // $redis->connect(‘127.0.0.1‘, 6379); //连接Redis
 7         $redis = new \Redis();
 8         $redis->connect(‘127.0.0.1‘, 6379);
 9         $redis->auth(‘123456‘); //密码验证
10         echo "Connection to server sucessfully";
11         //设置 redis 字符串数据
12         $redis->set("tutorial-name", "Redis tutorial");
13         // 获取存储的数据并输出
14         echo "Stored string in redis:: " . $redis->get("tutorial-name");
15         $this->display();
16     }
17 }

 

Ubuntu14安装redis及phpredis扩展及配置

标签:min   conf   new   server   store   div   string   扩展   predis   

原文地址:http://www.cnblogs.com/liuruolin/p/7780236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!