redis安装,配置

本文涉及的产品
云数据库 Tair(兼容Redis),内存型 2GB
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
简介:

一)下载源码,编译安装

 
  1. # wget http://redis.googlecode.com/files/redis-2.2.8.tar.gz 
  2. # tar xf redis-2.2.8.tar.gz 
  3. # cd redis 
  4. # make  
  5. # 网上说不能make install,可我这就是可以,奇怪,省去了手动copy redis命令的步骤
  6. # make install  

make install后显示

 
  1. cd src && make install 
  2. make[1]: Entering directory `/usr/local/src/redis-2.2.8/src' 
  3. cd ../deps/hiredis && make static ARCH="" 
  4. make[2]: Entering directory `/usr/local/src/redis-2.2.8/deps/hiredis' 
  5. make[2]: Nothing to be done for `static'. 
  6. make[2]: Leaving directory `/usr/local/src/redis-2.2.8/deps/hiredis' 
  7. cd ../deps/linenoise && make ARCH="" 
  8. make[2]: Entering directory `/usr/local/src/redis-2.2.8/deps/linenoise' 
  9. make[2]: `linenoise_example' is up to date. 
  10. make[2]: Leaving directory `/usr/local/src/redis-2.2.8/deps/linenoise' 
  11. cd ../deps/hiredis && make static 
  12. make[2]: Entering directory `/usr/local/src/redis-2.2.8/deps/hiredis' 
  13. make[2]: Nothing to be done for `static'. 
  14. make[2]: Leaving directory `/usr/local/src/redis-2.2.8/deps/hiredis' 
  15. cc -o redis-benchmark -std=c99 -pedantic -O2 -Wall -W   -lm -pthread   -g -rdynamic -ggdb  ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o ../deps/hiredis/libhiredis.a 
  16. cc -o redis-cli -std=c99 -pedantic -O2 -Wall -W   -lm -pthread   -g -rdynamic -ggdb  anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o 
  17.  
  18. Hint: To run 'make test' is a good idea ;) 
  19.  
  20. mkdir -p /usr/local/bin 
  21. cp -p redis-server /usr/local/bin 
  22. cp -p redis-benchmark /usr/local/bin 
  23. cp -p redis-cli /usr/local/bin 
  24. cp -p redis-check-dump /usr/local/bin 
  25. cp -p redis-check-aof /usr/local/bin 
  26. make[1]: Leaving directory `/usr/local/src/redis-2.2.8/src' 

二)修改配置

修改配置之前,请将redis.conf copy一份到/etc/目录下

 
  1. daemonize no 

改成

 
  1. daemonize yes 

这两个参数

 
  1. loglevel warning  
  2. logfile /var/log/redis.log  

取消注释

 
  1. syslog-enabled no #这个改成syslog-enabled yes
  2. syslog-facility local0

数据文件目录

 
  1. # The working directory. 
  2. # The DB will be written inside this directory, with the filename specified 
  3. # above using the 'dbfilename' configuration directive. 
  4. # Also the Append Only File will be created inside this directory. 
  5. # Note that you must specify a directory here, not a file name. 
  6. dir /var/db/redis 

内存,连接数设置

 
  1. maxmemory 256000000
  2. maxclients 500

三)启动脚本

 
  1. #!/bin/bash 
  2. # Init file for redis 
  3. # chkconfig: - 80 12 
  4. # description: redis daemon 
  5. # processname: redis 
  6. # config: /etc/redis.conf 
  7. # pidfile: /var/run/redis.pid 
  8.  
  9. . /etc/init.d/functions 
  10.  
  11. BIN="/usr/local/bin" 
  12. CONFIG="/etc/redis.conf" 
  13. PIDFILE="/var/run/redis.pid" 
  14.  
  15. ### Read configuration 
  16. [ -r "$SYSCONFIG" ] && source "$SYSCONFIG" 
  17.  
  18. RETVAL=0 
  19. prog="redis-server" 
  20. desc="Redis Server" 
  21.  
  22. start() { 
  23.  
  24.         if [ -e $PIDFILE ];then 
  25.              echo "$desc already running...." 
  26.              exit 1 
  27.         fi 
  28.  
  29.         echo -n $"Starting $desc: " 
  30.         daemon $BIN/$prog $CONFIG 
  31.  
  32.         RETVAL=$? 
  33.         echo 
  34.         [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog 
  35.         return $RETVAL 
  36.  
  37. stop() { 
  38.         echo -n $"Stop $desc: " 
  39.         killproc $prog 
  40.         RETVAL=$? 
  41.         echo 
  42.         [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog $PIDFILE 
  43.         return $RETVAL 
  44.  
  45. restart() { 
  46.         stop 
  47.         start 
  48.  
  49.  
  50. case "$1" in 
  51.   start) 
  52.         start 
  53.         ;; 
  54.   stop) 
  55.         stop 
  56.         ;; 
  57.   restart) 
  58.         restart 
  59.         ;; 
  60.   condrestart) 
  61.         [ -e /var/lock/subsys/$prog ] && restart 
  62.         RETVAL=$? 
  63.         ;; 
  64.   status) 
  65.         status $prog 
  66.         RETVAL=$? 
  67.         ;; 
  68.    *) 
  69. echo $"Usage: $0 {start|stop|restart|condrestart|status}" 
  70.         RETVAL=1 
  71. esac 
  72.  
  73. exit $RETVAL 

配置启动脚本

 
  1. #chmod 755 /etc/init.d/redis 
  2. # chkconfig --add redis 
  3. # chkconfig redis on 

四)启动

在正式启动redis之前,先创建数据目录

 
  1. # mkdir /var/db/redis 

否则会出现下面的错误

 
  1. [3030] 27 May 16:50:38 # Can't chdir to '/var/db/redis': No such file or directory 

同时配置内核参数

 
  1. sysctl vm.overcommit_memory=1 

否则提示错误

 
  1. # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. 
  2. #To fix this issue 
  3. #add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 
  4. #'sysctl vm.overcommit_memory=1' for this to take effect. 

最后,启动

 
  1. [root@web ~]# /etc/init.d/redis start 
  2. Starting Redis Server:                                     [  OK  ]

PS:不利用脚本启动,关闭redis的命令

 
  1. 启动 
  2. # redis-server /etc/redis.conf 
  3.  
  4. 关闭 
  5. # redis-cli shutdown 
  6.  
  7. 关闭某个端口上的redis 
  8. # redis-cli -p port shutdown

本文转自dongfang_09859 51CTO博客,原文链接:http://blog.51cto.com/hellosa/579825,如需转载请自行联系原作者
相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore     ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库 ECS 实例和一台目标数据库 RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
7天前
|
存储 监控 NoSQL
NoSQL与Redis配置与优化
通过合理配置和优化Redis,可以显著提高其性能和可靠性。选择合适的数据结构、优化内存使用、合理设置持久化策略、使用Pipeline批量执行命令、以及采用分布式集群方案,都是提升Redis性能的重要手段。同时,定期监控和维护Redis实例,及时调整配置,能够确保系统的稳定运行。希望本文对您在Redis的配置与优化方面有所帮助。
42 23
|
8天前
|
存储 监控 NoSQL
NoSQL与Redis配置与优化
通过合理配置和优化Redis,可以显著提高其性能和可靠性。选择合适的数据结构、优化内存使用、合理设置持久化策略、使用Pipeline批量执行命令、以及采用分布式集群方案,都是提升Redis性能的重要手段。
28 7
|
14天前
|
NoSQL 关系型数据库 Redis
《docker高级篇(大厂进阶):1.Docker复杂安装详说》包括:安装mysql主从复制、安装redis集群
《docker高级篇(大厂进阶):1.Docker复杂安装详说》包括:安装mysql主从复制、安装redis集群
64 14
|
11天前
|
关系型数据库 MySQL 应用服务中间件
《docker基础篇:8.Docker常规安装简介》包括:docker常规安装总体步骤、安装tomcat、安装mysql、安装redis
《docker基础篇:8.Docker常规安装简介》包括:docker常规安装总体步骤、安装tomcat、安装mysql、安装redis
51 7
|
27天前
|
NoSQL 算法 Redis
docker高级篇(大厂进阶):安装redis集群
docker高级篇(大厂进阶):安装redis集群
100 24
|
20天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
151 7
|
2月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
86 4
|
3月前
|
NoSQL 数据可视化 Linux
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
本文介绍了Redis的两个可视化管理工具:付费的Redis Desktop Manager和免费的Another Redis DeskTop Manager,包括它们的下载、安装和使用方法,以及在使用Another Redis DeskTop Manager连接Redis时可能遇到的问题和解决方案。
180 1
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
|
2月前
|
存储 SQL 关系型数据库
2024Mysql And Redis基础与进阶操作系列(1)作者——LJS[含MySQL的下载、安装、配置详解步骤及报错对应解决方法]
Mysql And Redis基础与进阶操作系列(1)之[MySQL的下载、安装、配置详解步骤及报错对应解决方法]
|
3月前
|
存储 NoSQL Redis
Redis 配置
10月更文挑战第14天
48 1