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/(进入redis-3.2.7文件)
- yum install gcc-c++ (安装一个c++编辑器)
7、执行make MALLOC=libc (编译一下)
- 最后执行(启动redis) /opt/redis/src/redis-server opt/redis/redis.conf
9.退出 键盘 ctrl +c
如果出现
即为成功
安装高级文件编辑器
vim
执行yum install vim即可安装
安装完成之后就可以用 vim 文件名打开文件
执行命令 :set nu 文件内容就带行号了
一些设置
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编译就可以了
网友评论