码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 安装Redis4.0.8【yum安装】

时间:2019-12-06 21:42:03      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:UNC   打开   protect   安装   yum   grep   art   func   install   

1.下载yum源
yum install epel-release
2.安装redis
yum install redis
3.启动redis
 # 启动redis
 service redis start
  # 停止redis
  service redis stop
  # 查看redis运行状态
  service redis status
  # 查看redis进程
  ps -ef | grep redis
 4.设置开机启动
  systemctl start redis
 5.连接redis 
  # 进入本机redis
  redis-cli
  # 列出所有key
  keys *
 6.修改下配置,允许远程连接,默认无密码

  # 打开redis配置文件

  vi /etc/redis.conf

  # 找到 bind 127.0.0.1 将其注释

  # 找到 protected-mode yes 将其改为

  protected-mode no

 7.重启redis服务

   systemctl restart redis.service

 

 

Linux 安装Redis4.0.8【yum安装】

标签:UNC   打开   protect   安装   yum   grep   art   func   install   

原文地址:https://www.cnblogs.com/jin-nuo/p/11997477.html

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