`

linux下 yum 安装redis以及使用

阅读更多
linux下yum安装redis以及使用
1、yum install redis      --查看是否有redis   yum 源

[root@localhost ~]# yum install redis
已加载插件:fastestmirror
base | 3.6 kB 00:00
docker-ce-edge | 2.9 kB 00:00
docker-ce-stable | 2.9 kB 00:00
extras | 3.4 kB 00:00
updates | 3.4 kB 00:00
extras/7/x86_64/primary_db | 145 kB 00:00
Loading mirror speeds from cached hostfile
* base: mirrors.sohu.com
* extras: mirrors.sohu.com
* updates: mirrors.sohu.com
没有可用软件包 redis。
错误:无须任何处理

2、yum install epel-release    --下载fedora的epel仓库

[root@localhost ~]# yum install epel-release
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.sohu.com
* extras: mirrors.sohu.com
* updates: mirrors.sohu.com
正在解决依赖关系
--> 正在检查事务
---> 软件包 epel-release.noarch.0.7-9 将被 安装
--> 解决依赖关系完成

依赖关系解决

=====================================================================
Package 架构 版本 源 大小
=====================================================================
正在安装:
epel-release noarch 7-9 extras 14 k

事务概要
=====================================================================
安装 1 软件包

总下载量:14 k
安装大小:24 k
Is this ok [y/d/N]: y
Downloading packages:
epel-release-7-9.noarch.rpm | 14 kB 00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
正在安装 : epel-release-7-9.noarch 1/1
验证中 : epel-release-7-9.noarch 1/1

已安装:
epel-release.noarch 0:7-9

完毕!



3、yum install redis    -- 安装redis数据库

[root@localhost ~]# yum install redis
已加载插件:fastestmirror
epel/x86_64/metalink | 7.9 kB 00:00
epel | 4.7 kB 00:00
(1/3): epel/x86_64/updateinfo | 857 kB 00:00
(2/3): epel/x86_64/group_gz | 266 kB 00:01
(3/3): epel/x86_64/primary_db | 6.1 MB 00:05
Loading mirror speeds from cached hostfile
* base: mirrors.sohu.com
* epel: mirrors.ustc.edu.cn
* extras: mirrors.sohu.com
* updates: mirrors.sohu.com
正在解决依赖关系
--> 正在检查事务
---> 软件包 redis.x86_64.0.3.2.10-2.el7 将被 安装
--> 正在处理依赖关系 libjemalloc.so.1()(64bit),它被软件包 redis-3.2.10-2.el7.x86_64 需要
--> 正在检查事务
---> 软件包 jemalloc.x86_64.0.3.6.0-1.el7 将被 安装
--> 解决依赖关系完成

依赖关系解决

=====================================================================
Package 架构 版本 源 大小
=====================================================================
正在安装:
redis x86_64 3.2.10-2.el7 epel 545 k
为依赖而安装:
jemalloc x86_64 3.6.0-1.el7 epel 105 k

事务概要
=====================================================================
安装 1 软件包 (+1 依赖软件包)

总下载量:650 k
安装大小:1.7 M
Is this ok [y/d/N]: y
Downloading packages:
警告:/var/cache/yum/x86_64/7/epel/packages/jemalloc-3.6.0-1.el7.x86_64.rpm: 头V3 RSA/SHA256 Signature, 密钥 ID 352c64e5: NOKEY
jemalloc-3.6.0-1.el7.x86_64.rpm 的公钥尚未安装
(1/2): jemalloc-3.6.0-1.el7.x86_64.rpm | 105 kB 00:00
(2/2): redis-3.2.10-2.el7.x86_64.rpm | 545 kB 00:01
---------------------------------------------------------------------
总计 385 kB/s | 650 kB 00:01
从 file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 检索密钥
导入 GPG key 0x352C64E5:
用户ID : "Fedora EPEL (7) <epel@fedoraproject.org>"
指纹 : 91e9 7d7c 4a5e 96f1 7f3e 888f 6a2f aea2 352c 64e5
软件包 : epel-release-7-9.noarch (@extras)
来自 : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
是否继续?[y/N]:y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
正在安装 : jemalloc-3.6.0-1.el7.x86_64 1/2
正在安装 : redis-3.2.10-2.el7.x86_64 2/2
验证中 : redis-3.2.10-2.el7.x86_64 1/2
验证中 : jemalloc-3.6.0-1.el7.x86_64 2/2

已安装:
redis.x86_64 0:3.2.10-2.el7

作为依赖被安装:
jemalloc.x86_64 0:3.6.0-1.el7

完毕!

4、service redis start 
   systemctl start redis.service   --开启redis服务
   redis-server /etc/redis.conf   --开启方式二
[root@localhost ~]# service redis start
Redirecting to /bin/systemctl start redis.service


5、ps -ef | grep redis   -- 查看redis是否开启
[root@localhost ~]# systemctl start redis.service
[root@localhost ~]# ps -ef|grep redis
redis     5024     1  0 07:58 ?        00:00:00 /usr/bin/redis-server 127.0.0.1:6379
root      5054  4497  0 08:00 pts/0    00:00:00 grep --color=auto redis


6、redis-cli       -- 进入redis服务
复制代码
[root@localhost ~]# redis-cli
127.0.0.1:6379> ?
redis-cli 3.2.10
To get help about Redis commands type:
      "help @<group>" to get a list of commands in <group>
      "help <command>" for help on <command>
      "help <tab>" to get a list of possible help topics
      "quit" to exit

To set redis-cli perferences:
      ":set hints" enable online hints
      ":set nohints" disable online hints
Set your preferences in ~/.redisclirc
127.0.0.1:6379> get
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> get key
(nil)
127.0.0.1:6379> get key abc
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> set key abc
OK
127.0.0.1:6379> get key abc
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> get key
"abc"
127.0.0.1:6379>



7、redis-cli  shutdown      --关闭服务
复制代码
[root@localhost ~]# redis-cli
127.0.0.1:6379> shutdown
not connected>
not connected>
[root@localhost ~]# ps -ef |grep redis
root      5127  4497  0 08:34 pts/0    00:00:00 grep --color=auto redis
[root@localhost ~]# systemctl start redis.service
[root@localhost ~]# ps -ef |grep redis
redis     5134     1  0 08:34 ?        00:00:00 /usr/bin/redis-server 127.0.0.1:6379
root      5138  4497  0 08:35 pts/0    00:00:00 grep --color=auto redis
[root@localhost ~]#



8、开放端口6379、6380的防火墙
/sbin/iptables -I INPUT -p tcp --dport 6379  -j ACCEPT   开启6379
/sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT  开启6380
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT
9、使用redis  desktop manager连接redis
分享到:
评论

相关推荐

    CentOS7 linux下yum安装redis以及使用

    以上步骤详细介绍了在 CentOS7 系统上通过 YUM 安装 Redis、配置端口和密码以及使用 RedisDesktopManager 远程连接的方法。这些操作对于开发人员来说非常实用,可以快速搭建 Redis 环境并进行开发测试。通过这些步骤...

    linux下安装redis以及搭建redis集群

    在Linux环境下安装Redis并搭建Redis集群是一个涉及到系统...以上就是在Linux环境下安装Redis以及搭建Redis集群的详细过程。了解这些知识后,你将有能力部署和管理自己的Redis集群,以满足高并发、高可用性的业务需求。

    CentOS(Linux)离线安装Redis详细教程(亲测可行)

    ### CentOS (Linux) 离线安装 Redis 详细教程 #### 一、引言 在没有互联网连接的情况下,在 CentOS 系统上安装 Redis 可能会遇到诸多挑战,如依赖包缺失、软件包管理工具配置不当等。本教程旨在帮助读者解决这些...

    linux redis安装(redis-2.6.14.tar.gz)

    以上就是在Linux环境下安装Redis 2.6.14的详细步骤以及一些基本的Redis命令。尽管现在Redis已经更新到更高的版本,但2.6.14仍然适用于学习和某些特定场景。在实际操作中,确保根据你的具体需求调整配置文件,以实现...

    linux下的redis安装包含配置文件

    本文将详细讲解如何在Linux环境下安装Redis,以及如何配置主服务器和从服务器。 首先,让我们从安装Redis开始。在大多数Linux发行版中,可以通过包管理器进行安装。例如,在Ubuntu或Debian上,可以使用以下命令: ...

    安装部署-Linux上安装Redis教程

    在Linux系统上安装Redis是一个常见的任务,特别是在CentOS7这样的企业级环境中。Redis是一个高性能的键值存储系统,常用于数据库、缓存和消息代理。本文将详细指导如何在CentOS7上安装Redis 6.2.6版本。 首先,我们...

    linux安装redis 单机版以及集群

    下面将详细介绍如何在Linux上安装Redis的单机版以及设置Redis集群。 **一、Linux上安装Redis单机版** 1. **更新系统** 在开始安装前,首先确保系统是最新的。对于基于Debian的系统(如Ubuntu),可以使用以下命令...

    linux 离线安装 redis 部署教程含编译环境

    在没有网络连接或者网络环境不稳定的情况下,离线安装Redis是必要的。本教程将详细介绍如何在Linux上离线安装Redis,包括编译环境的搭建。 首先,我们需要下载Redis的源代码包。通常,你可以从Redis官方网站...

    Windows 上安装 Redis安装,redis7.2安装到windows上面

    在Windows上安装Redis的过程涉及到多个步骤,包括启用必要的Windows功能、安装WSL2(Windows Subsystem for Linux 2)、设置默认WSL版本以及在Linux环境中安装Redis。以下是对这些步骤的详细说明: 1. **启用...

    linux服务器上centos7.5离线安装redis 所需要的gcc包

    在Linux服务器上安装Redis,尤其是处于离线环境的CentOS 7.5系统,需要一些必要的依赖包,其中最重要的就是GCC(GNU Compiler Collection)。GCC是GNU项目的一部分,它是一个开源的编译器套件,用于将源代码编译成可...

    linux 服务器部署 redis Nginx 等

    使用 yum 安装 Redis 可以通过以下命令实现: yum install redis -y 安装完成后,需要启动 Redis 服务,可以使用以下命令: redis-server /etc/redis.conf 可以使用以下命令在后台启动 Redis 服务: redis-...

    redis linux rpm离线安装.zip

    以下是一份详细的Redis在Linux环境下使用RPM包进行离线安装的步骤: 1. **下载Redis RPM包**: 首先,你需要在有网络的环境中访问Redis官方网站或第三方镜像站点,下载适用于你系统版本的Redis RPM包。例如,你...

    linux下redis安装步骤

    ### Linux 下 Redis 安装步骤详解 #### 一、Redis 概述 Redis 是一个开源的 Key-Value 数据库系统,使用 ANSI C 语言编写,支持网络连接并且可以在内存中运行,同时也支持数据持久化。它提供了丰富的数据结构操作,...

    Windows、LInux下安装redis

    五、Linux下安装Redis 1、源码安装方式 (1)检查gcc:首先确保你的系统已经安装了GCC编译器,通过`gcc --version`命令检查。 (2)安装gcc:如果未安装,使用`sudo apt-get install gcc`(Ubuntu)或`yum install ...

    gcc离线安装包(linux环境中离线安装Redis)

    在Linux环境中,离线安装Redis通常需要依赖于GCC编译器和其他相关开发库。GCC(GNU Compiler Collection)是GNU项目的一部分,它是一个开源的编译系统,用于将源代码转换为机器可执行的二进制文件。在这个场景下,...

    Linux环境安装redis

    Linux 环境安装 Redis Linux 环境安装 Redis 是指在 Linux 操作系统中安装和配置 Redis 服务器的过程。Redis 是一个开源的内存数据存储系统,可以用作数据库、消息队列、缓存等多种角色。 安装 Redis đầu ti...

    Redis yum 安装以及配置

    Redis可以通过多种方式安装在Linux系统上,其中通过YUM安装是最简便的方法之一,特别适用于CentOS/RHEL系统。下面详细介绍如何通过YUM安装Redis。 ##### 1. 添加Redis YUM仓库 由于默认的CentOS/RHEL仓库中可能...

    Linux下安装redis,内附安装文档,包含redis的前置环境gcc安装

    本文将详细讲解如何在Linux环境下安装Redis,包括Redis的前置环境——GCC的安装过程。 首先,让我们来了解Redis。Redis是“Remote Dictionary Server”的缩写,它是一个基于键值对的数据结构服务器,支持多种数据...

Global site tag (gtag.js) - Google Analytics