首页 > 其他 > 详细

redis(二)--安装

时间:2015-06-01 22:28:55      阅读:289      评论:0      收藏:0      [点我收藏+]

源码安装redis

参考github上的说明:https://github.com/antirez/redis

 

从github中获取最新的源码:

github地址:https://github.com/antirez/redis

下载包:https://github.com/antirez/redis/archive/unstable.zip

 

github中,redis的页面截图:

技术分享

上图红色圈住的就是我们要的下载地址啦。在服务器中下载这个包。

wget https://github.com/antirez/redis/archive/unstable.zip

 并且解压缩这个压缩包。

unzip unstable.zip

 

技术分享

(有安装git的话 也可以 git clone 。)

 

make

在上一步解压缩了的redis-unstable文件夹中编译

cd redis-unstable/
make

PS:系统要安装make工具。

技术分享

 

编译完的样子如上图所示。

 

 

make PREFIX=[/path] install

执行命令, 生成redis程序。

make PREFIX=/root/tools/redis/ install

命令执行后,会在定义的目录下有一个bin目录。

运行redis

先把源码中的redis.conf文件复制到上一步bin目录中。

cp redis.conf /root/tools/redis/bin/

把这个conf文件小修改一下。

daemonize yes

端口酌情修改:

# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379

然后保存redis.conf文件。

 

根据这份修改过的conf文件启动redis:

./redis-server ./redis.conf

 

netstat 一下,看到程序启动成功即可。

技术分享

 

redis(二)--安装

原文:http://www.cnblogs.com/ELMND/p/4544963.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!