码迷,mamicode.com
首页 > 其他好文 > 详细

Redis安装教程

时间:2015-01-21 14:42:30      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

1. Linux下Redis安装教程

(1)安装

#tar xf  redis-2.6.14.tar.gz
#cd redis-2.6.14
#make
#make install

(2)配置


修改redis.conf配置文件
#cp redis.conf /etc/
#vi /etc/redis.conf
#以守护进程方式运行
daemonize no改为 daemonize yes 
#修改dir ./为绝对路径,
./ redis  #改为/usr/local/
#修改appendonly为yes
#指定是否在每次更新操作后进行日志记录,
appendonly no  改为 appendonly yes

(3)启动

#/usr/local/bin/redis-server /etc/redis.conf
查看redis是否己启动 
#ps -ef | grep redis
#netstat -tnlp |grep redis
1.4 将redis添加到自启动中
#echo "/usr/local/bin/redis-server /etc/redis.conf" >> /etc/rc.local

2. Windows下Redis安装教程

(1)安装

unzip redis-2.0.0.zip

(2)配置

网上下载一个redis.conf,解压到同级目录

(3)启动

redis-server.exe redis.conf

(4)windows版redis为非官方正式版,仅可作为开发调试使用,建议在Linux系统上安装Redis

Redis安装教程

标签:

原文地址:http://www.cnblogs.com/yeahwell/p/redis-install.html

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