centos7安装redis5

1.下载包 redis-5.0.7.tar.gz

链接: https://pan.baidu.com/s/1hsDDZ0pZx5L_bZNLubZu7Q 提取码: ghnc

2.安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[root@henry ~]# tar -xf redis-5.0.7.tar.gz -C /usr/share/
[root@henry ~]# cd /usr/share/redis-5.0.7/
[root@henry redis-5.0.7]# make     #安装
[root@henry redis-5.0.7]# mkdir -p /usr/local/reids-5.0.7     #创建redis的使用目录
[root@henry redis-5.0.7]# cd /usr/local/reids-5.0.7
[root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-server ./     #拷贝服务端程序
[root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-cli ./      #拷贝客户端程序
[root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/redis.conf ./      #拷贝配置文件
[root@henry reids-5.0.7]# sed -i '/^bind 127.0.0.1$/s/127.0.0.1/192.168.40.10/g' /usr/local/reids-5.0.7/redis.conf     #192.168.40.10是你本机IP
[root@henry reids-5.0.7]# sed -i '/protected-mode/s/yes/no/g' /usr/local/reids-5.0.7/redis.conf     #关闭redis的保护模式
[root@henry reids-5.0.7]# sed -i '/daemonize/s/no/yes/g' /usr/local/reids-5.0.7/redis.conf     #开启redis的后台运行模式
[root@henry reids-5.0.7]# sed -i 's/# requirepass foobared/requirepass 123123/g' /usr/local/reids-5.0.7/redis.conf     #开启redis的密码并将密码设置成123123
[root@henry reids-5.0.7]# sed -i 's/6379/16379/g' /usr/local/reids-5.0.7/redis.conf     #修改redis的监听端口为16379
[root@henry reids-5.0.7]# /usr/local/reids-5.0.7/redis-server /usr/local/reids-5.0.7/redis.conf     #启动redis
[root@henry reids-5.0.7]# ./redis-cli -h 192.168.40.10 -a 123123 -p 16379     #测试连接
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
192.168.40.10:16379> ping
PONG
192.168.40.10:16379>

 

 

  

posted @   看见酵母菌  阅读(190)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 25岁的心里话
点击右上角即可分享
微信分享提示