华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动

step1: 下载

wget http://download.redis.io/releases/redis-5.0.7.tar.gz

在这里插入图片描述

step2: 解压

tar xzf redis-5.0.7.tar.gz
在这里插入图片描述

step3:移动,放到usr/local目录下

sudo mv ./redis-5.0.7 /usr/local/redis/
华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第1张图片

step4:进入redis目录

cd /usr/local/redis/

华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第2张图片

step5:生成

sudo make
华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第3张图片

step6:测试

sudo make test
华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第4张图片

step7:安装

sudo make install

华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第5张图片

step8:安装完成后,我们进入目录/usr/local/bin中查看

cd /usr/local/bin
ls -all
华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第6张图片

step9:配置⽂件,移动到/etc/⽬录下

配置⽂件⽬录为/usr/local/redis/redis.conf

sudo cp /usr/local/redis/redis.conf /etc/redis/

在这里插入图片描述

step10: 打开 redis.conf文件

cd /usr/local/redis
vim redis.conf

在这里插入图片描述

step11: 修改redis.conf文件

绑定ip:如果需要远程访问,可将此⾏注释,或绑定⼀个真实ip
bind 127.0.0.1

华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第7张图片

是否以守护进程运⾏
如果以守护进程运⾏,则不会在命令⾏阻塞,类似于服务
如果以⾮守护进程运⾏,则当前终端被阻塞
设置为yes表示守护进程,设置为no表示⾮守护进程
推荐设置为yes
daemonize yes

华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第8张图片

step12: 开启redis

redis-server /usr/local/redis/redis.conf

华为云给centos安装redis/ centos中redis的安装与卸载以及开机启动_第9张图片

你可能感兴趣的:(redis,linux,redis,centos,linux)