Linux安装Redis

软件配置

centos7.9 华为云
redis-5.0.3

安装步骤

前置环境

# 安装gcc
[root@hecs-403280 ~]# yum install gcc

# 查看是否安装成功
[root@hecs-403280 ~]# rpm -qa|grep gcc
libgcc-4.8.5-44.el7.x86_64
gcc-4.8.5-44.el7.x86_64

下载安装包

# 下载安装包
[root@hecs-403280 ~]# wget http://download.redis.io/releases/redis-5.0.3.tar.gz

# 解压安装包
[root@hecs-403280 ~]# tar -zxvf redis-5.0.3.tar.gz

# 安装包放到/usr/local目录下
[root@hecs-403280 ~]# cp -R redis-5.0.3 /usr/local

安装

# 进入到解压好的redis-5.0.3目录下
[root@hecs-403280 ~]# cd /usr/local/redis-5.0.3
# 编译与安装
[root@hecs-403280 redis-5.0.3]# make

修改配置文件

截屏2023-08-08 12.57.13.png

# 进入配置文件
[root@hecs-403280 redis-5.0.3]# vim redis.conf

redis.conf文件,仅列出修改部分:

daemonize yes  # 默认值为no,后台启动
protected-mode no  # 默认值为yes,关闭保护模式。开启的话,只有本机才可以访问redis

#bind 127.0.0.1 # 默认就是注释的(bind绑定的是自己机器网卡的ip,如果有多块网卡可以配多个ip,代表允许客户端通过机器的哪些网卡ip去访问,内网一般可以不配置bind,注释掉即可)

启动服务

# 启动服务
[root@hecs-403280 redis-5.0.3]# src/redis-server redis.conf

# 验证启动是否成功 
[root@hecs-403280 redis-5.0.3]# ps -ef | grep redis 
root      2052  1799  0 13:01 pts/0    00:00:00 grep --color=auto redis
root     31959     1  0 09:58 ?        00:00:31 ./redis-server 127.0.0.1:6379

进入redis客户端

# 进入客户端
[root@hecs-403280 redis-5.0.3]# src/redis-cli
127.0.0.1:6379> set name jay
OK
127.0.0.1:6379> get name
"jay"
# 退出客户端
127.0.0.1:6379> quit
[root@hecs-403280 redis-5.0.3]# 

退出redis服务

# 退出redis服务,以下三种方式都可以
(1)pkill redis-server 
(2)kill 进程号                       
(3)src/redis-cli shutdown

你可能感兴趣的:(#,环境搭建,linux,redis,运维,redis安装)