Redis单节点部署[Centos7]

发布于:2022-12-15 ⋅ 阅读:(369) ⋅ 点赞:(0)

1 准备

1.1 下载源码

wget https://download.redis.io/redis-stable.tar.gz

1.2 下载SHA 256校验文件

wget https://download.redis.io/redis-stable.tar.gz.SHA256SUM

1.3 校验

sha256sum -c redis-stable.tar.gz.SHA256SUM

1.4 安装编译所需依赖

sudo yum -y install gcc-c++

2 编译以及安装

2.1 解压

tar -zxvf redis-stable.tar.gz -C /opt/module/

2.2 编译

cd /opt/module/redis-stable/
make

2.3 安装

cd src/
sudo make install

将 conf 配置文件复制出来。

新建 etc 文件夹

cd /opt/module/redis-stable/
mkdir etc

redis.conf复制到 ect 文件夹下

cp /opt/module/redis-stable/redis.conf /opt/module/redis-stable/etc

修改redis.conf

# 绑定主机地址
bind 192.168.131.102
# 是否开启保护模式,默认开启。要是配置里没有指定bind和密码。开启该参数后,redis只会本地进行访问,拒绝外部访问。要是开启了密码和bind,可以开启。否则最好关闭设置为no。
protected-mode no
# redis进程是否以守护进程的方式运行,yes为是,no为否(不以守护进程的方式运行会占用一个终端)。
daemonize yes
# 需要密码
requirepass redisPASSWORD123456

2.4 启动

redis-server /opt/module/redis-stable/redis.conf

查看进程

ps axu | grep redis

使用redis-cli命令连接客户端

关闭redis

redis-cli -p 6379 shutdown