-
nginx官网 https://redis.io/download/
-
把鼠标放到这里,复制下载地址
-
在服务器找个文件夹执行命令
wget https://github.com/redis/redis/archive/7.2.4.tar.gz
-
tar -zxvf 7.2.4.tar.gz
-
make
-
make install
-
看到这几行就说明安装成功了
-
不放心的话再查看下bin目录,如下图,可以看到redis-server
-
先备份配置文件,再修改配置文件
vi redis.conf
-
daemonize no ---> yes
-
bind 127.0.0.1 ---> bind 0.0.0.0
-
requirepass 123456(自定义的密码)
-
保存文件,执行
redis-server redis.conf
-
我遇到了这个问题,不慌,提示说的很清楚,只需要在 /etc/sysctl.conf 这个文件中添加一行 vm.overcommit_memory = 1
-
执行
sysctl vm.overcommit_memory=1
-
再执行
redis-server redis.conf
-
看到什么都没输出,这时已经在后台运行了
-
使用客户端连接进行测试,顺便推荐个好用的客户端,Another Redis Desktop Manager(https://goanother.com/cn/)
-
完结撒花,恭喜你,已经安装成功了
CentOS 安装 redis 7.2
山城️7772024-02-09 14:38
相关推荐
blessing。。1 小时前
I2C学习2202_754421541 小时前
生成MPSOC以及ZYNQ的启动文件BOOT.BIN的小软件登云时刻2 小时前
Kubernetes集群外连接redis集群和使用redis-shake工具迁移数据(一)运维&陈同学2 小时前
【zookeeper03】消息队列与微服务之zookeeper集群部署周末不下雨3 小时前
win11+ubuntu22.04双系统 | 联想 24 y7000p | ubuntu 22.04 | 把ubuntu系统装到1T的移动固态硬盘上!!!哎呦喂-ll3 小时前
Linux进阶:环境变量Rverdoser3 小时前
Linux环境开启MongoDB的安全认证PigeonGuan4 小时前
【jupyter】linux服务器怎么使用jupyter东华果汁哥4 小时前
【linux 免密登录】快速设置kafka01、kafka02、kafka03 三台机器免密登录