一、安装 Redis
# 下载 redis 安装包
wget https://download.redis.io/redis-stable.tar.gz
# 解压安装
tar -xzvf redis-stable.tar.gz
cd redis-stable
make && make install
# 如果缺少依赖就安装对应的依赖包即可
二、设置为开机启动
# 将启动脚本复制到 init.d 目录
cp utils/redis_init_script /etc/init.d/redis
# 复制 redis 的配置文件
cp redis.conf /etc/redis/6379.conf
# 修改配置文件
vim /etc/redis/6379.conf
# 将 no 改为 yes
daemonize yes
# 查看服务
chkconfig --list
# 启动服务
service redis start
# 查看是否启动成功
ps -aux | grep redis