Centos环境下Redis的安装

来源:互联网 发布:艾克里里淘宝店链接 编辑:程序博客网 时间:2024/04/24 00:54

一. 前面按照官网上的步骤进行安装:http://redis.io/download

$ wget http://download.redis.io/releases/redis-3.2.1.tar.gz$ tar xzf redis-3.2.1.tar.gz$ cd redis-3.2.1$ make
到了make这步出错,查看出错信息以及网上搜了一下原因,发现应该是gcc还没安装,所以就需要进行gcc的安装。

$ yum install gcc
完成后,发现又出错,报错信息: error: jemalloc/jemalloc.h: No such file or directory。

然后百度,如下:

在README 有这个一段话。

Allocator  
---------  
 
Selecting a non-default memory allocator when building Redis is done by setting  
the `MALLOC` environment variable. Redis is compiled and linked against libc  
malloc by default, with the exception of jemalloc being the default on Linux  
systems. This default was picked because jemalloc has proven to have fewer  
fragmentation problems than libc malloc.  
 
To force compiling against libc malloc, use:  
 
    % make MALLOC=libc  
 
To compile against jemalloc on Mac OS X systems, use:  
 
    % make MALLOC=jemalloc


说关于分配器allocator, 如果有MALLOC  这个 环境变量, 会有用这个环境变量的 去建立Redis。

而且libc 并不是默认的 分配器, 默认的是 jemalloc, 因为 jemalloc 被证明 有更少的 fragmentation problems 比libc。

但是如果你又没有jemalloc 而只有 libc 当然 make 出错。 所以加这么一个参数。

解决办法

make MALLOC=libc

二. 然后

$ ./src/redis-server ./redis.conf(可以不加,只是指定配置文件供redis-server读取;如果不指定,redis-server也能读取配置文件)
$ ./src/redis-cli
127.0.0.1:6379>set foo bar
ok
127.0.0.1:>get foo
"bar"
终于成功。

0 0
原创粉丝点击