码迷,mamicode.com
首页 > 其他好文 > 详细

安装Redis3.0

时间:2019-11-29 10:51:03      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:时间   span   install   bin   默认   gcc-c++   server   col   ++   

## 安装redis依赖
yum -y install cpp binutils glibc glibc-kernheaders glibc-common glibc-devel gcc make gcc-c++ libstdc++-devel tcl
mkdir -p /usr/local/src/redis
cd /usr/local/src/redis
wget http://download.redis.io/releases/redis-3.0.2.tar.gz  或者 rz 上传
tar -xvf redis-3.0.2.tar.gz
cd redis-3.0.2
make -j 4 使用4个cpu编译
make test #这个就不要执行了,需要很长时间
make install

cp redis.conf /etc/
vi /etc/redis.conf
# 修改如下,默认为no
daemonize yes

#启动
redis-server /etc/redis.conf
#测试
redis-cli

## 工具
utils/install_server.sh

 

安装Redis3.0

标签:时间   span   install   bin   默认   gcc-c++   server   col   ++   

原文地址:https://www.cnblogs.com/fubinhnust/p/11956115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!