一、安装
redis linux 安装 6.2.6 稳定版_ycsdn10的博客-CSDN博客
二、拷贝配置文件
cd /redis/redis-6.2.6
cp redis.config /redis/install/bin
/redis/install/bin路径中的bin为安装自动生成的
三、修改配置文件
1.修改绑定IP
#bind 127.0.0.1
2.修改为daemonize 为 yes
daemonize yes
3.修改保护模式为不开启
protected-mode no
四、启动
1.进入profile文件
vi /etc/profile
2.添加启动命令路径
export PATH=$PATH:/redis/install/bin
3.刷新配置
source /etc/profile
4.启动
redis-server redis.conf
5.确认
ps -ef | grep redis