一、安装tar包
1.下载文件
https://redis.io/downloads/
2.解压文件
tar -zxvf redis-7 -C /opt/module/redis
3.安装编译
make && make install
4.管理redis
创建bin和etc文件夹 bin:用于存放可执行文件 etc:用于存放redis.conf文件
5.移动文件
# 移动配置文件 mv redis.conf /opt/module/redis/etc # 移动可执行文件 mv mkreleasehdr.sh redis-benchmark redis-check-aof redis-check-rdb redis-cli redis-server /data/redis/bin/
6.修改配置文件
注释掉 bing 127.0.0.1,127.0.0.1:表示只允许本地连接 # 将appendonly 修改为 yes appendonly yes # 将daemonize 修改为 yes daemonize yes
7.启动redis
# 启动redis服务端,指定配置文件的位置 ./redis-server /opt/module/redis/etc/redis.conf
8.进入客户端
./redis-cli # 验证设置的密码 auth 密码 # 退出命令 exit
标签:opt,配置文件,部署,reids,redis,etc,conf,yes,安装 From: https://www.cnblogs.com/lxzcloud/p/18420592