CentOS8 安装 Redis

1 下载

Redis官方下载地址:http://redis.io/download,下载最新稳定版本。

2 安装

#下载并解压安装包
[root@test ~]# cd /opt/src
[root@test src]# wget https://download.redis.io/releases/redis-6.2.5.tar.gz
[root@test src]# tar -zxvf redis-6.2.5.tar.gz -C /opt
[root@test src]# cd /opt/redis-6.2.5
#编译
[root@test redis-6.2.5]# make
#安装并指定安装目录
[root@test redis-6.2.5]# make install PREFIX=/opt/redis 

3 启动服务

3.1前台启动

[root@test ~]# cd /opt/redis/bin
[root@test bin]# ./redis-server

3.2 后台启动

#从 redis 的源码目录中复制 redis.conf 到 redis 的安装目录
[root@test redis-6.2.5]# cp /opt/redis-6.2.5/redis.conf /opt/redis/bin/

#修改 redis.conf 文件
#将 requirepass foobared 前面的注释去掉,改成你的密码,如 requirepass 123456
#将 daemonize no 改为 daemonize yes

#启动
[root@test bin]# ./redis-server redis.conf

3.3 设置开机启动

[root@test bin]# systemctl daemon-reload
[root@test bin]# systemctl start redis.service
[root@test bin]# systemctl enable redis.service

创建 redis 命令软链接

[root@test ~]# ln -s /opt/redis/bin/redis-cli /usr/bin/redis

测试 redis

[root@test bin]# redis
127.0.0.1:6379> ping
PONG
127.0.0.1:6379>

4 常用操作命令

#启动服务
systemctl start redis.service
#停止服务
systemctl stop redis.service
#重启服务
systemctl restart redis.service
#查看服务状态
systemctl status redis.service
#设置开机自启动
systemctl enable redis.service
#停止开机自启动
systemctl disable redis.service

你可能感兴趣的:(linuxredis)