Centos7安装Redis

安装Redis

redis地址:http://redis.io/download

//先安装tcl
yum -y install tcl
//右键tar.gz复制链接,下载在src目录下
cd /usr/local/src
wget http://download.redis.io/releases/redis-3.0.7.tar.gz
//解压
tar -zxvf win-3.2.100.tar.gz
//复制
cp -r redis-3.0.7 /usr/local/
//切换目录
cd /usr/local/redis-3.0.7/
//编译
make
make install
make test

 

安装tcl

Centos7安装Redis_第1张图片

 

下载安装包

Centos7安装Redis_第2张图片

 

make test 

Centos7安装Redis_第3张图片

 

安装完后,src目录下会出现编译后的redis服务程序redis-server,还有用于测试的客户端程序redis-cli

//启动redis服务 
cd /usr/local/redis-3.0.7/src/
./redis-server

Centos7安装Redis_第4张图片

 

//需要保持上面图片所示的服务器开启,另外打开一个服务器窗口
$ cd /usr/local/redis-3.0.7/src

//使用测试客户端程序redis-cli和redis服务交互
$ ./redis-cli
redis> set foo bar
OK
redis> get foo
"bar"

Centos7安装Redis_第5张图片

 

笔记:

//启动
redis-server
//测试
redis-cli

完成!

另外:swoole使用异步redis的前置条件

已安装redis服务、已安装hiredis库、编译swoole需要加入  --enable-async-redis

注意:如果您的 swoole版本为4.3以上,则只需要安装redis服务即可,hiredis库和重新编译swoole都不需要在做了,因为4.3以上版本已经内置了。

//切换到swoole的安装目录
cd /usr/local/swoole
//编译swoole时开启异步redis
./configure --with-php-config=/usr/local/php/bin/php-config  --enable-async-redis

 Centos7安装Redis_第6张图片

 

转载于:https://www.cnblogs.com/jiangml/p/11497391.html

你可能感兴趣的:(Centos7安装Redis)