安装编译器依赖环境
- redis是c语言开发,安装redis需要先将官网下载的源码进行编译,编译依赖gcc环境
yum install gcc-c++
下载压缩包
wget http://download.redis.io/releases/redis-4.0.2.tar.gz
解压
tar -zxvf redis-4.0.2.tar.gz
编译安装
cd redis-4.0.2
make
遇到adlist.o问题
安装
- 执行安装命令
make PREFIX=/usr/local/tools/redis install
-
将redis-4.0.2的redis.conf移动到redis/bin
cp ./redis.conf /usr/local/tools/redis/bin/
redis启动
./redis-server redis.conf
redis 后台程序启动
./redis-server redis.conf &
数据库拒绝访问
-
注释掉bind
-
redis.conf取消保护模式
protected-mode no