linux 安装redis 6.2.5
2022/6/17 2:20:25
本文主要是介绍linux 安装redis 6.2.5,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
亲测有效
1、环境依赖
yum install gcc-c++ yum install centos-release-scl scl-utils-build yum install -y devtoolset-8-toolchain
2、 源码安装
1)解压包 tar -zxvf redis-6.2.5 2)移动 mv redis-6.2.5 redis mv redis /usr/local/ 3)创建配置和日志文件夹 cd /usr/local/redis mkdir config cp redis.conf config/redis.conf mkdir log 4)编译源码 make PREFIX=/usr/local/redis install
3、修改配置文件
编辑配置文件: vim /usr/local/redis/config/redis.conf 1、开启后台启动 daemonize no 改为 daemonize yes 2、开启远程链接 注释掉 bind 127.0.0.1 protected-mode yes 改为 protected-mode no 3、配置客户端连接的活跃时间 tcp-keepalive 60 4、日志位置 logfile "/usr/local/redis/log/redis.log" 5、修改密码【可不设置】 requirepass 123456
4、配置redis环境变量
vim /etc/profile export REDIS_HOME=/usr/local/redis export PATH-$PATH:$REDIS_HOME source /etc/profile
5、开机启动
vim /etc/rc.d/rc.local 添加一行 /usr/local/redis/bin/redis-server /usr/local/redis/etc/redis.conf
6、启动和停止
开启 cd /usr/local/redis/bin ./redis-server ../config/redis.conf 关闭 pkill redis
这篇关于linux 安装redis 6.2.5的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-08阿里云Redis项目实战入门教程
- 2024-11-08阿里云Redis资料:新手入门与初级使用指南
- 2024-11-08阿里云Redis教程:新手入门及实用指南
- 2024-11-07阿里云Redis学习入门:新手必读指南
- 2024-11-07阿里云Redis学习入门:从零开始的操作指南
- 2024-11-07阿里云Redis学习:初学者指南
- 2024-11-06阿里云Redis入门教程:轻松搭建与使用指南
- 2024-11-02Redis项目实战:新手入门教程
- 2024-10-22Redis入门教程:轻松掌握数据存储与操作
- 2024-10-22Redis缓存入门教程:快速掌握Redis缓存基础知识