search
HomeDatabaseMysql TutorialRedis系列-安装部署维护篇

redis高性能很大程度上源于它是个内存型数据库,它的高性能表现在:set操作11w/s,get操作8.1w/s,为了进一步加深对redis的理解总

Redis是个高性能的key-value数据库,它的key具有丰富的数据结构:string,hash,list set和sorted set。作为NOSQL,比起memcache之类,不仅仅key数据结构丰富,而且具有持久化的功能,并且能够支持主从复制,,很方便构建集群。

redis高性能很大程度上源于它是个内存型数据库,它的高性能表现在:set操作11w/s,get操作8.1w/s,为了进一步加深对redis的理解总结,我打算写个redis系列的文章。这里主要谈谈redis安装部署及运维维护。

1、下载安装

[root@ ]# wget -c     #下载 
[root@ ]# tar -zxvf redis-2.4.17.tar.gz  #解压 
[root@ ]# cd redis-2.4.17 
[root@ redis-2.4.17]# make  #编译 
[root@ redis-2.4.17]# make install #安装 

安装完毕,常用工具会自动拷贝到/user/loca/bin目录下。做为服务器,我们常常还需要把redis设置成开机自启动,源码包中有个很好用的脚本,执行脚步根据提示输入即可。

[root@ redis-2.4.17]# cd utils/ 
[root@ 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] 
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! 

注意执行install_server.sh,需要先进入utils目录,不然脚本会报错,提示找不到相应文件。安装完服务,redis自动启动,可以用ps命令查看到相关信息:

[root@ utils]# ps -ef | grep redis 
root      4554    1  0 10:55 ?        00:00:02 /usr/local/bin/redis-server /etc/redis/6379.conf 
root      4564  2808  0 10:59 pts/0    00:00:00 grep redis 

2、手动启动关闭服务

[root@ utils]# /etc/init.d/redis_6379 stop  #关闭 
[root@ utils]# /etc/init.d/redis_6379 start  #启动 

3、通过客户端命令行工具连接redis服务查看redis相关信息

a)连接

[root@ utils]# redis-cli 

redis 127.0.0.1:6379> 

b)其他指令

redis 127.0.0.1:6379> info  #查看server版本内存使用连接等信息 
 
redis 127.0.0.1:6379> client list  #获取客户连接列表 
 
redis 127.0.0.1:6379> client kill 127.0.0.1:33441 #终止某个客户端连接 
 
redis 127.0.0.1:6379> dbsize #当前保存key的数量 
 
redis 127.0.0.1:6379> save #立即保存数据到硬盘 
 
redis 127.0.0.1:6379> bgsave #异步保存数据到硬盘 
 
redis 127.0.0.1:6379> flushdb #当前库中移除所有key 
 
redis 127.0.0.1:6379> flushall #移除所有key从所有库中 
 
redis 127.0.0.1:6379> lastsave #获取上次成功保存到硬盘的unix时间戳 
 
redis 127.0.0.1:6379> monitor #实时监测服务器接收到的请求 
 
redis 127.0.0.1:6379> slowlog len #查询慢查询日志条数 
(integer) 3 
 
redis 127.0.0.1:6379> slowlog get #返回所有的慢查询日志,最大值取决于slowlog-max-len配置 
 
redis 127.0.0.1:6379> slowlog get 2 #打印两条慢查询日志 
 
redis 127.0.0.1:6379> slowlog reset #清空慢查询日志信息 

通过以上操作,单台服务器基本跑起来了,不过后面的路还很长很长。

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

一起聊聊Redis实现秒杀的问题一起聊聊Redis实现秒杀的问题May 27, 2022 am 11:40 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor