关于linux:CentOS8-安装-Redis

56次阅读

共计 1120 个字符,预计需要花费 3 分钟才能阅读完成。

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

正文完
 0