Redis

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

Redis------>nosql数据库,KV数据库,缓存数据库
redis支持永存数据

1.安装redis

yum -y install gcc

cd /root/lnmp_soft

tar -xf redis-3.0.6.tar.gz

cd redis-3.0.6

make && make install

问题:配置文件,PATH,启动脚本# ./utils/install_server.sh //初始化
Welcome to the redis service installer
This script will help you easily set up a running redis server
Please select the redis port for this instance: [6379] //设置端口号,默认即可
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] //配置文件
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] //日志文件
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379]
//数据目录
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server]
//Redis服务器软件存储路径
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
//确认信息是否正确,回车确认即可
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!
[root@svr5 ~]# ls /etc/init.d/redis_6379 //查看启动脚本

redis服务器
服务器程序
redis-server
客户端程序
redis-cli
主配置文件 /etc/redis/redis_portnumber

相关实践学习
基于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 Redis
Redis雪崩
Redis雪崩
70 0
|
JSON NoSQL Redis
|
16天前
|
NoSQL Redis
Redis系列
(1)完全基于内存操作,数据都存在内存中 (2)采用单线程,避免了不必要的上下文切换带来的性能问题,也不用考虑锁的问题 (3)基于非阻塞的io多路复用机制 (4)数据结构简单,对数据操作简单
|
7月前
|
监控 NoSQL 算法
Redis为什么这么快
Redis为什么这么快
38 4
|
7月前
|
缓存 NoSQL 数据库
Redis的三剑客
Redis的三剑客
|
消息中间件 缓存 NoSQL
Redis总结
Redis总结
40 0
|
存储 NoSQL 中间件
redis
redis
53 0
|
缓存 NoSQL 关系型数据库
redis-1
redis-1
44 0
|
消息中间件 存储 缓存
什么是 Redis?
什么是 Redis?
73 0
|
NoSQL 安全 Unix
Redis (必看)
Redis 学习点滴 知识分享
88 0