第一部分:安装redis
安装环境:系统centos 6.4
安装目录:
/usr/local/redis
首先到Redis官网下载安装包,或者直接使用如下命令下载:
wget http://download.redis.io/releases/redis-3.0.7.tar.gz
解压到安装目录后执行 make命令:
[root@ser211 local]# tar -vxzf redis-3.0.7.tar.gz [root@ser211 redis]# make
测试是否安装成功,执行一下命令:
[root@ser211 redis]# ./usr/local/redis/src/redis-server [root@ser211 init.d]# redis-server 1074:C 03 Feb 16:34:16.941 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf 1074:M 03 Feb 16:34:16.943 * Increased maximum number of open files to 10032 (it was originally set to 1024). 1074:M 03 Feb 16:34:16.943 # Warning: 32 bit instance detected but no memory limit set. Setting 3 GB maxmemory limit with 'noeviction' policy now. _._ _.-``__ ''-._ _.-`` `. `_. ''-._ Redis 3.0.7 (00000000/0) 32 bit .-`` .-```. ```\/ _.,_ ''-._ ( ' , .-` | `, ) Running in standalone mode |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 | `-._ `._ / _.-' | PID: 1074 `-._ `-._ `-./ _.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | http://redis.io `-._ `-._`-.__.-'_.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | `-._ `-._`-.__.-'_.-' _.-' `-._ `-.__.-' _.-' `-._ _.-' `-.__.-' 1074:M 03 Feb 16:34:16.944 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 1074:M 03 Feb 16:34:16.944 # Server started, Redis version 3.0.7 1074:M 03 Feb 16:34:16.944 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. 1074:M 03 Feb 16:34:16.944 * The server is now ready to accept connections on port 6379
到这步,Redis安装成功!
第二部分:配置redis并添加到服务
将/usr/local/redis/utils/redis_init_script脚本拷贝到/etc/init.d/redis
[root@ser211 init.d]# cp /usr/local/redis/utils/redis_init_script /etc/init.d/redis
将脚本文件做如下修改:
#!/bin/sh #chkconfig: 2345 80 90 # Simple Redis init.d script conceived to work on Linux systems # as it does use of the /proc filesystem. REDISPORT=6379 EXEC=/usr/local/bin/redis-server CLIEXEC=/usr/local/bin/redis-cli PIDFILE=/var/run/redis_${REDISPORT}.pid CONF="/etc/redis/${REDISPORT}.conf" case "$1" in start) if [ -f $PIDFILE ] then echo "$PIDFILE exists, process is already running or crashed" else echo "Starting Redis server..." $EXEC $CONF fi ;; stop) if [ ! -f $PIDFILE ] then echo "$PIDFILE does not exist, process is not running" else PID=$(cat $PIDFILE) echo "Stopping ..." $CLIEXEC -p $REDISPORT shutdown while [ -x /proc/${PID} ] do echo "Waiting for Redis to shutdown ..." sleep 1 done echo "Redis stopped" fi ;; *) echo "Please use start or stop as first argument" ;; esac
根据脚本文件中的配置,创建数据目录/var/redis/6379,将redis-server、redis-cli移动到/usr/local/bin下,将/usr/local/redis/redis.conf移动到/etc/redis/6379.conf,并做如下修改:
daemonize yes //由no改为yes,以后台方式运行 dir /var/redis/6379 //配置数据库文件存放目录
最后将redis添加为服务:
[root@ser211 init.d]# chkconfig --add redis
[root@ser211 redis]# service redis start Starting Redis server... [root@ser211 redis]# redis-cli 127.0.0.1:6379> get a "1" 127.0.0.1:6379> [root@ser211 init.d]# service redis stop Stopping ... Redis stopped
好了,配置完成!!!
相关推荐
mv redis-3.0.7.tar.gz /usr/local/redis/ cd /usr/local/redis tar -xvf redis-3.0.7.tar.gz 5.安装c语言环境 yum install gcc-c++ 6.编译redis cd /usr/local/redis/redis-3.0.7 make 7.安装redis make ...
在Linux系统中安装Redis-3.0.7版本,你需要遵循以下步骤: 1. **下载Redis源码**:首先,你需要从Redis官方网站或者镜像站点下载Redis-3.0.7的源代码包。在本例中,文件名为`redis.tar.gz`,这是一个gzip压缩的tar...
在Linux环境中,我们通常使用`redis-3.0.7.tar.gz`这个源码包来安装Redis。这需要我们先解压文件,然后编译安装。解压命令如下: ```bash tar -zxvf redis-3.0.7.tar.gz cd redis-3.0.7 ``` 接下来,配置并编译...
这个"redis-3.0.7-免编译"版本是专门为那些希望快速部署Redis服务而设计的,无需经历编译安装的复杂过程。在IT行业中,这种预编译的二进制包对于开发者和运维人员来说是非常实用的,可以节省大量时间并降低出错的...
还在为环境没有网络,无法安装redis源码包的编译组件而烦恼吗,这款解压即用的redis已编译安装包,完美符合您的要求,解压后进入目录执行src/redis-server redis.conf 即可开启服务
### CentOS 6.5 下 Redis 3.0.7 的安装与配置 ...通过以上步骤,你可以在 CentOS 6.5 系统上成功安装并配置 Redis 3.0.7,同时还可以设置远程访问和密码保护等功能,确保 Redis 服务的安全性和稳定性。
本文档将详细介绍 Linux 系统安装 Redis 及 Tomcat 的配置步骤,包括 Redis 的安装、部署、配置和启动,Tomcat 的安装和配置等。 一、Redis 的安装 Redis 是一个开源的、基于内存的数据结构存储系统,可以用作...
我们给大家列出详细的图文步骤教给大家在linux虚拟机上安装redis以及相关的配置流程。 将redis-3.0.7.tar.gz上传到linux虚拟机上编译: a) 因为redis是C语言开发,所以需要先编译,在linux上编译需要依赖gcc环境,如果...
在Linux环境下安装Redis 3.0.7版本,你需要了解以下关键知识点: 1. **Redis简介**: Redis是一个开源(BSD许可),内存中的数据结构存储系统,它可以用作数据库、缓存和消息代理。其支持的数据类型包括字符串、...
#### 三、Linux环境下的Redis安装步骤 1. **下载并解压源码包**: - 使用命令`wget http://download.redis.io/releases/redis-3.0.7.tar.gz`从官网下载最新版本的Redis压缩包。 - 解压压缩包:`tar xzf redis-...
以下将详细介绍如何在Linux环境下安装Redis,以及如何设置集群。 首先,我们需要从提供的压缩包文件中提取所需资源。在这个案例中,我们有两个文件:`redis-3.0.0.gem`和`redis-3.0.7.tar.gz`。`redis-3.0.0.gem`是...
本文档将详细介绍如何在Linux系统上安装Redis。 首先,你需要获取Redis的安装包。Redis通常以源码的形式提供,这意味着你需要自己编译并安装它。在本例中,安装包是`redis-3.0.7.tar.gz`。你可以通过访问Redis的...
下面将详细介绍如何在Linux环境中安装Redis-3.0.7版本,并将其配置为系统服务。 ##### 1. 解压并编译 - 将`redis-3.0.7.tar.gz`压缩包上传至`/usr/redis`目录。 - 进入到`/usr/redis`目录,并解压文件。 - 进入到`...
RedisShake的安装过程相对简单,首先通过wget命令下载相应版本的redis-shake压缩包,解压后移动到/usr/local/目录下,并设置环境变量。通过运行`redis-shake.linux --version`可以验证安装是否成功。 启动...
包含redis3.0.7免编译版安装包,redis5.0.7离线安装包,主要还有离线所需安装环境包。不仅适用于redis离线,也适用于所有其他离线安装文件所需环境文件包。环境包采用rpm安装。花费心血收集整理而成。
#### 二、Linux环境下Redis的安装部署 ##### 1. 下载Redis源码包 首先,我们需要从Redis官网下载所需的Redis版本,例如`redis-3.0.7.tar.gz`。官方下载地址为:[http://download.redis.io/releases/]...