码迷,mamicode.com
首页 > 其他好文 > 详细

Redis 学习之简介及安装

时间:2017-02-17 20:28:09      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:ctr   zip   复制   port   fsync   set   登录   connect   start   

一、redis简介

Redis是一个开源的,先进的key-value存储。它通常被称为数据结构服务器,因为键可以包含字符串、哈希、链表、集合和有序集合。

支持的数据类型:string(字符串)、list(集合)、set(集合)、zset(有序集合)。

支持的操作:这些数据类型支持push/pop、add/remove 等丰富的数据操作。支持不同方式的排序。

缓存:redis为了保证效率数据都是缓存在内存中的,为了防止系统突然崩溃从而导致内存中的数据丢失,它也可以周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件。

redis用户:新浪微博是redis最大的用户,200多台物理机。

redis在新浪微博中的使用场景:

1、应用程序直接访问redis数据库

该方式与传统应用程序访问mysql类似,但该方式不安全。

2、应用程序直接访问Redis,只有当Redis访问失败后才访问Mysql

技术分享

a、应用程序先访问redis server,redis与mysql集群进行数据同步

b、如果redis集群宕机后应用程序直接访问mysql集群

3、redis使用场景:

a、区最新N个数据的操作

b、排行榜应用、取TOP N操作

c、需要精确设定过期时间的应用

d、计数器应用

e、uniq操作、获取某段时间所有数据排重值

f、实时系统、反垃圾系统

g、Pub/Sub构建实时消息系统

h、构建队列系统

i、redis缓存

 

三、redis的安装

1、下载 https://redis.io/download 稳定版(stable)

a、解压:[root@localhost tools]# tar -zxvf redis-3.2.8.tar.gz

b、编译:[root@localhost redis-3.2.8]# make

#如果出现错误 gcc:命令未找到 则安装gcc yum install -y gcc g++ gcc-c++ make

#如果出现 tcl 问题 则安装tcl yum install tcl

c、安装 [root@localhost src]# make install

在src下将出现redis的相关命令(存放在解压后源码包下的src目录)

-rwxr-xr-x. 1 root root 5707211 2月 17 22:33 redis-cli 进入redis客户端命令

-rwxr-xr-x. 1 root root 7827978 2月 17 22:33 redis-server 启动redis服务命令

2、配置redis

(1)[root@localhost src]# mkdir -p /usr/local/redis/bin 创建文件夹用户存储redis命令

(2)[root@localhost src]# mkdir -p /usr/local/redis/etc 创建文件夹用户存储redis配置文件

(3)将/tools/redis-3.2.8下的 redis.conf移动到/usr/local/redis/etc下

       [root@localhost redis-3.2.8]# mv ./redis.conf /usr/local/redis/etc

(4)将/tools/redis-3.2.8/src下的 mkreleasehdr.sh、redis-benchmark、redis-check-aof、redis-check-rdb、redis-cli、redis-server移动到/usr/local/redis/bin下

(5)启动redis服务:进入redis bin目录下 /usr/local/redis/bin

[root@localhost bin]# ./redis-server

#如果出现 -bash: ./redis-server: 权限不够

#查看权限:[root@localhost bin]# ls -l | grep -i redis-server

#赋予xr权限 :[root@localhost bin]# chmod 755 redis-server

[root@localhost bin]# ls -l | grep -i redis-server 
-rw-rw-r--. 1 root root 7827978 2月 17 22:52 redis-server
[root@localhost bin]# chmod 755 redis-server
[root@localhost bin]# ls -l | grep -i redis-server
-rwxr-xr-x. 1 root root 7827978 2月 17 22:52 redis-server

提示信息

[root@localhost bin]# ./redis-server 
5322:C 17 Feb 23:18:39.086 # Warning: no config file specified, using the default config. In order to specify a config file use ./redis-server /path/to/redis.conf 5322:M 17 Feb 23:18:39.087 * Increased maximum number of open files to 10032 (it was originally set to 1024). _._ _.-``__ ‘‘-._ _.-`` `. `_. ‘‘-._ Redis 3.2.8 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ‘‘-._ ( ‘ , .-` | `, ) Running in standalone mode |`-._`-...-` __...-.``-._|‘` _.-‘| Port: 6379 | `-._ `._ / _.-‘ | PID: 5322 `-._ `-._ `-./ _.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | http://redis.io `-._ `-._`-.__.-‘_.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | `-._ `-._`-.__.-‘_.-‘ _.-‘ `-._ `-.__.-‘ _.-‘ `-._ _.-‘ `-.__.-‘ 5322:M 17 Feb 23:18:39.113 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 5322:M 17 Feb 23:18:39.113 # Server started, Redis version 3.2.8 5322:M 17 Feb 23:18:39.114 # 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. 5322:M 17 Feb 23:18:39.114 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command ‘echo never > /sys/kernel/mm/transparent_hugepage/enabled‘ as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 5322:M 17 Feb 23:18:39.114 * The server is now ready to accept connections on port 6379

安装成功端口 6379

使用指定的配置文件启动redis服务器

[root@localhost bin]# ./redis-server /usr/local/redis/etc/redis.conf

 

四、redis后台运行解决方法:

vi /usr/local/redis/etc/redis.conf

################################# GENERAL #####################################

# By default Redis does not run as a daemon. Use ‘yes‘ if you need it.

# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.

daemonize no

#daemonize no:默认启动方式该方式占用一个窗口,一旦ctrl+c redis服务器就关闭

#daemonize yes:将redis的启动方式改为后台运行

进入:redis 客户端

[root@localhost bin]# pwd

/usr/local/redis/bin

[root@localhost bin]# ./redis-cli

127.0.0.1:6379>

关闭redis服务器:

[root@localhost bin]# pkill redis-serve (通过进程的方式)

[root@localhost bin]# ./redis-cli shutdown(通过redis命令)

************************************** Redis配置 **********************************************

Redis主从复制:  

redis只需在从服务器(slave)上配置即可:

slaveof 211.122.11.11 6379 #指定master 的ip 和端口 

 

daemonize    如果需要在后台运行,把该项改为yes  

pidfile      配置多个pid的地址 默认在/var/run/redis.pid

bind 绑定ip,设置后只接受来自该ip的请求

port 监听端口,默认为6379

timeout      设置客户端连接时的超时时间,单位为秒

loglevel     分为4级,debug、verbose、notice、warning

logfile      配置log文件地址

databases    设置数据库的个数,默认使用的数据库为0

save         设置redis进行数据库镜像的频率

rdbcompression    在进行镜像备份时,是否进行压缩

Dbfilename        镜像备份文件的文件名

Dir   数据库镜像备份的文件放置路径

Slaveof     设置数据库为其他数据库的从数据库

Masterauth 主数据库连接需要的密码验证

Requirepass     设置登录时需要使用的密码

Maxclients 限制同时连接的客户数量

Maxmemory 设置redis能够使用的最大内存

Appendonly 开启append only模式

以下了解即可:

Appendfsync 设置对appendonly.aof文件同步的频率

vm-enabled 是否开启虚拟内存支持

vm-swap-file 设置虚拟内存的交换文件路径

vm-max-memory 设置redis使用的最大物理内存大小

vm-page-size 设置虚拟内存的页大小

vm-pages 设置交换文件的总的page数量

vm-max-threads 设置VM IO同时使用的线程数量

Glueoutputbuf 把小的输出缓存存放在一起

hash-max-zipmap-entries 设置hash的临界值

Activerehashing 重新hash

*******************************************************************

Redis常用命令  

键/值相关命令。

keys * #查询所有

keys user*#查询指定的

exists user:001#判断是否存在。

del name#删除指定的键。

expire addr 10#设置过期时间

ttl addr#查询过期时间

select 0 #选择数据库

move age 1#将age移到1数据库。

get age #获取

persist age#移除age的过期时间。

randomkey#随机返回一个key

rename name1 name2#重命名键

type myset#返回键的类型。

ping #测试redis连接是否存活。

echo lamp#输出一个lamp

select 10#选择数据库。

quit/exit/crtl+C#退出客户端

dbsize#返回库里的键的个数。

服务器相关命令:

info#显示redis服务器的相关信息。

config get */loglevel #返回所有/指定的配置信息。

flushdb#删除当前库中的所有键/表。

flushall#删除所有数据库中的所有键/表

Redis 学习之简介及安装

标签:ctr   zip   复制   port   fsync   set   登录   connect   start   

原文地址:http://www.cnblogs.com/qinyujie/p/6411339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!