centos7编译安装redis
2022/2/24 19:22:57
本文主要是介绍centos7编译安装redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
centos7编译安装redis,并加入系统服务
环境
centos7
安装
yum install -y gcc cd /home wget http://download.redis.io/releases/redis-4.0.9.tar.gz tar -zxvf redis-4.0.9.tar.gz cd redis-4.0.9/ make -j 8 MALLOC=libc
cd src && make install
启动
./redis-server ./redis-server ../redis.conf
关闭
1.强制关闭:Ctrl+c 2.安全关闭:./redis-cli shutdown
加入系统服务
vim /lib/systemd/system/redisd.service [Unit] Description=Redis After=network.target [Service] ExecStart=/home/redis-4.0.9/src/redis-server /home/redis-4.0.9/redis.conf --daemonize no ExecStop=/usr/local/bin/redis-cli -h 127.0.0.1 -p 6379 shutdown [Install] WantedBy=multi-user.target
启动
systemctl enable redisd systemctl statr redisd systemctl status redisd systemctl stop redisd
redis客户端连接
cd /home/redis-4.0.9/src/ ./redis-cli -h 127.0.0.1 -p 6379 #或./redis-cli
这篇关于centos7编译安装redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 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缓存基础知识