Centos7源码部署Redis3.2.9
一.环境准备
[Redis-Server]
-
主机名
= host-1
-
系统
= centos-7.3
-
地址
=
1.1.1.1
-
软件
= redis-3.2.9
6379
二.安装
1.yum依赖
yum -y install gcc
2.编译安装Redis
wget http://download.redis.io/releases/redis-3.2.9.tar.gz
tar xzf redis-3.2.9.tar.gz
cd redis-3.2.9
3.Redis 的编译,只将命令文件编译,将会在当前目录生成bin目录
make && make install
4.返回上一级并移动到/usr/local下
cd ..
mv redis-3.2.9 /usr/local/redis
5.创建环境变量
echo 'PATH=$PATH':/usr/local/redis/bin/ >> /etc/profile
source /etc/profile