1、下载redis,http://download.redis.io/releases/redis-3.2.7.tar.gz
2、linux用的是centos6.5
3、把redis上传到centos6.5中,我放在/usr/software中
4、解压 tar -zxvf /usr/software/redis-3.2.7.tar.gz -C /usr/local/
5、进入redis cd /usr/local/redis-3.2.7/
- yum install gcc-c++
7、执行make MALLOC=libc
最后执行 /usr/local/redis-3.2.7/src/redis-server /usr/local/redis-3.2.7/redis.conf
如果出现
即为成功
一些设置
1、修改redis服务器的配置文件
vi redis.conf
注释以下绑定的主机地址,支持远程登录(protected-mode yes 改为no)
# bind 127.0.0.1 protected-mode no
在编译redis3.2.9时报错
cc: ../deps/hiredis/libhiredis.a: No such file or directory cc: ../deps/lua/src/liblua.a: No such file or directory cc: ../deps/geohash-int/geohash.o: No such file or directory cc: ../deps/geohash-int/geohash_helper.o: No such file or directory make[1]: *** [redis-server] Error 1 make[1]: Leaving directory `/usr/local/src/redis-3.2.9/src' make: *** [all] Error 2
解决办法
进入源码包目录下的deps目录中执行
make geohash-int hiredis jemalloc linenoise lua
然后再进行make编译就可以了