在本章中,您将了解和学习Redis的环境安装设置。
一、RedHat 6.0 自定义安装
1、创建redis用户
Redis 默认的安装路径是/usr/local/redis,并且安装是root用户。
为安装在自定义的目录下,首先创建一个redis用户,并且修改密码。
[[email protected] home]# useradd -d /home/redis -g redis -m redis [[email protected] /]# passwd redis Changing password for user redis. New password:
2、下载redis安装包
目前,redis官方的最新版本的是Redis 3.2.8版本。
下载完毕后使用tar命令解压到当前目录。
[[email protected] ~]$ wget http://download.redis.io/releases/redis-3.2.8.tar.gz [[email protected] ~]$ tar zxvf redis-3.2.8.tar.gz
3、编译redis
进入安装目录下,执行make命令,编译成功后会显示下面内容。
编译后在目录下生成一个src目录,里面会有编译好的执行文件。
[[email protected] ~]$ cd redis-3.2.8 [[email protected] redis-3.2.8]$ make cd src && make all make[1]: Entering directory `/home/redis/redis-3.2.8/src‘ Hint: It‘s a good idea to run ‘make test‘ ;) make[1]: Leaving directory `/home/redis/redis-3.2.8/src‘
4、安装redis(安装到redis用户下)
5、编辑环境变量
二、如何启动Redis
Redis 3.2.8 安装与配置
时间: 2024-09-29 08:38:25