centos yum install redis

centos yum install redis

linux下yum安装redis以及使用

1、yum install redis      --查看是否有redis   yum 源

[[email protected] ~]# 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仓库

[[email protected] ~]# 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数据库

[[email protected] ~]# 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) <[email protected]>" 指纹 : 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   --开启方式二

[[email protected] ~]# service redis start Redirecting to /bin/systemctl start redis.service

5、ps -ef | grep redis   -- 查看redis是否开启

[[email protected] ~]# systemctl start redis.service [[email protected] ~]# 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服务

按 Ctrl+C 复制代码

按 Ctrl+C 复制代码

7、redis-cli  shutdown      --关闭服务

[[email protected] ~]# 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 [[email protected] ~]# 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

[[email protected] ~]# /sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT [[email protected] ~]# /sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT

9、使用redis  desktop manager连接redis

原文地址:https://www.cnblogs.com/zhangchao512/p/9340768.html

时间: 2024-11-05 06:27:42

centos yum install redis的相关文章

CentOS yum安装redis

安装redis yum install redis 2.  安装php-redis扩展 yum install php-redis 3.  启动redis,并设定开机自动启动 service redis start chkconfig redis on 完成,安装就是这么简单.粗暴!!!!

centos7 yum install redis

直接yum 安装的redis 不是最新版本 yum install redis 如果要安装最新的redis,需要安装Remi的软件源,官网地址:http://rpms.famillecollet.com/ yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.rpm 然后可以使用下面的命令安装最新版本的redis: yum --enablerepo=remi install redis 安装完毕后,即可使用下

CentOS 7 Install Redis

1. yum install epel-release 2. yum install –y redis 3. start : systemctl start redis.service 4. status : systemctl status redis.service 5. startup: systemctl enable redis.service redis.conf文件默认在/etc目录下, 可更改位置和名字,更改后需要修改文件/usr/lib/systemd/system/redis

How to install redis server on CentOS 7 / RHEL 7

How to install redis server on CentOS 7 / RHEL 7 October 4, 2014 by sharad chhetri Leave a Comment In this tutorial we will learn, how to install redis server on CentOS 7 / RHEL 7 . The abbreviation of redis is REmote DIctionary Server. It is one the

CentOS使用yum安装Redis的方法

1.由于centOS官方yum源里面没有Redis,这里我们需要安装一个第三方的yum源,这里用了fedora的epel仓库 yum install epel-release 安装过程中会有让你确认的,输入y按回车就可以了 2.安装Redis yum install redis 安装过程中会有让你确认的,输入y按回车就可以了 3.启动Redis service redis start 4.修改端口号/密码等配置 vim /etc/redis.conf 原文地址:https://www.cnblo

在centos6.4用yum安装redis

一.centos默认的安装源在官方centos.org上,而redis在第三方的yum源里,所以无法安装,非官方的yum推荐用fedora的epel仓库.当然也可通过配置 /etc/yum.repos.d/CentOS-Base.repo文件增加yum源.二.下载并安装epel.#wget http://mirrors.ustc.edu.cn/fedora/epel/6/i386/epel-release-6-8.noarch.rpm#rpm -ivh epel-release-6-8.noar

CentOS yum时出现&quot;Could not retrieve mirrorlist&quot;

问题描述: CentOS 6.x minimal(最小化) 安装, CentOS yum install net-tools 时出现"Could not retrieve mirrorlist ", 原因: 网络出现问题 a.修改网络配置 vi /etc/sysconfig/network-script/ifcfg-eth0 动态获取IP配置(可选1): ONBOOT=yes MM_Controlled=no BOOTPROTO=dhcp 设置固定IP配置(可选2): ONBOOT=y

yum 安装redis

今天学习redis时,用yum直接安装redis直接报错,后来百度一下得到一下解决方案. 1:去下面的网站下载EPEL对应的版本:(epel是fedora维护的yum源,里面软件众多)http://fedoraproject.org/wiki/EPEL2:我下载的是这个:wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm3:安装epel:rpm -ivh epel-release-6-8.n

yum 安装 redis php-redis

yum 安装 redis php-redis redis和php-redis在官方源上是没有的,需要安装其他的源,其他源的地址为 http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm 安装步骤如下 # wget http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm# rpm -ivh epel-rele