CentOS 中将安装 Redis 并设置为开机启动

2022-12-28 05:54:35 阅读:1570 评论:0 点赞:0
所属分类: 心情随笔 Redis Linux

一、安装 Redis

# 下载 redis 安装包
wget https://download.redis.io/redis-stable.tar.gz

# 解压安装
tar -xzvf redis-stable.tar.gz
cd redis-stable
make && make install
# 如果缺少依赖就安装对应的依赖包即可

二、设置为开机启动

# 将启动脚本复制到 init.d 目录
cp utils/redis_init_script /etc/init.d/redis
# 复制 redis 的配置文件
cp redis.conf /etc/redis/6379.conf
# 修改配置文件
vim /etc/redis/6379.conf
# 将 no 改为 yes
daemonize yes

# 查看服务
chkconfig --list

# 启动服务
service redis start

# 查看是否启动成功
ps -aux | grep redis
标签: Linux redis centos

不拘一格

职业:后端开发工程师
学校:重庆师范大学
城市:重庆
文章:165
一个喜欢学习的人,快来和我成为朋友吧....

登录逐梦笔记

注册逐梦笔记

已有账号?