Centos7安装Redis5

一、安装

1、查看是否安装gcc

gcc -v   
yum -y install gcc

2、解压

tar zxvf redis-5.0.4.tar.gz -C /usr/local/ && cd /usr/local/redis-5.0.4/   

3、进入安装目录编译

make

Centos7安装Redis5_第1张图片
4、安装

make install  

Centos7安装Redis5_第2张图片
5、前台启动服务器

./redis-server

在这里插入图片描述

二、配置

1、备份配置文件

cp redis.conf redis.conf.bak

2、设置后台启动
修改:

daemonize yes

在这里插入图片描述
3、后台启动

redis-server /usr/local/redis-5.0.4/redis.conf

4、启动客户端

redis-cli

关闭redis:

shutdown

5、测试
在这里插入图片描述
6、远程连接
查看防火墙状态

firewall-cmd --state

停止firewall

systemctl stop firewalld.service

连接成功
Centos7安装Redis5_第3张图片

你可能感兴趣的:(NOSQL)