Redis教程

linux中安装redis

本文主要是介绍linux中安装redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

前言:Linux版本为Centos7.X

一、环境准备

  • Linux Centos7.X 服务器
  • linux连接工具:Xshell 7 (网上自行下载)
  • linux文件传输工具: XFTP (网上自行下载)
  • redis-6.2.4.tar.gz 下载地址:https://redis.io/download

二、下载redis

在这里插入图片描述

三、上传redis安装包到服务器

在这里插入图片描述

四、安装

1、解压安装包

压缩包放在opt目录下

[root@linux-study /]# cd opt
[root@linux-study opt]# tar -zvxf redis-6.2.4.tar.gz 

2、移动解压后的目录(统一管理)

[root@linux-study opt]# mv redis-6.2.4   /usr/local/redis-6.2.4

3、切换到移动后的目录下,安装

[root@linux-study opt]# cd /usr/local/redis-6.2.4 
[root@linux-study redis-6.2.4]# make   #安装

在这里插入图片描述

4、检查安装

[root@linux-study redis-6.2.4]# make install

在这里插入图片描述

五、启动redis

注:redis默认的安装路径:usr/local/bin

1、将redis配置文件,复制到当前安装路径下

[root@linux-study bin]# mkdir redisconfig  #创建一个新目录管理redis
[root@linux-study bin]# cp /usr/local/redis-6.2.4/redis.conf  redisconfig/
[root@linux-study bin]# cd redisconfig/
[root@linux-study redisconfig]# ls
redis.conf
[root@linux-study redisconfig]# 

2、redis默认不是后台启动的,修改redis.conf配置文件

在这里插入图片描述

3、启动redis服务

[root@linux-study bin]# pwd
/usr/local/bin
[root@linux-study bin]# redis-server redisconfig/redis.conf 

4、客户端连接redis

[root@linux-study bin]# pwd
/usr/local/bin
[root@linux-study bin]# redis-cli -p 6379
127.0.0.1:6379> 

5、查看redis进程是否开启

[root@linux-study ~]# ps -af | grep redis

在这里插入图片描述

六、关闭

127.0.0.1:6379> SHUTDOWN 
not connected> exit

在这里插入图片描述

完成!!!

这篇关于linux中安装redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!