小白学习安装redis

获取redis

下载到centos指定目录

shell 复制代码
cd /home/download

wget https://download.redis.io/releases/redis-7.0.2.tar.gz

解压、编译、安装

  • 解压
shell 复制代码
tar -zxf redis-7.0.2.tar.gz -C /opt
  • 编译
shell 复制代码
cd /opt/redis-7.0.2

make
  • 安装
shell 复制代码
cd /opt/redis-7.0.2

make install

进入/usr/local/bin查看

shell 复制代码
ll /usr/local/bin

启动

  • 配置环境变量启动
shell 复制代码
vi /etc/profile

添加如下内容:

vi 复制代码
REDIS_HOME=/opt/redis-7.0.2
PATH=$PATH:$REDIS_HOME/bin

使变量生效

shell 复制代码
source /etc/profile

启动:

shell 复制代码
#实际是去找/usr/local/bin的这个启动语句,并使用redis配置文件
redis-server $REDIS_HOME/redis.conf

停止:

shell 复制代码
#/usr/local/bin的这个进行停止
redis-cli shutdown
  • 直接启动
shell 复制代码
redis-server
  • 编辑redis.conf,根据配置启动
shell 复制代码
cd $REDIS_HOME

cp redis.conf redis.conf.bck
vi redis.conf

修改如下内容:

vi 复制代码
# 监听地址,0.0.0.0使可以在任意网络访问
bind 0.0.0.0
# 守护进程,设置成yes即可后台运行
daemonize yes
# 密码,设置后,访问redis需要密码
requirepass 1234
logfile "redis.log"

根据你自己的进程号,停止redis

shell 复制代码
 redis-server redis.conf
 ps -ef | grep redis
 kill -9 73155
  • 使用系统服务启动

进入/etc/systemd/system,新建redis.service

shell 复制代码
cd /etc/systemd/system

vi redis.service

内容如下:

vi 复制代码
[Unit]
Description=redis-server
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/bin/redis-server /opt/redis-7.0.2/redis.conf
PrivateTmp=true

[Install]
WantedBy=multi-user.target

启动:

shell 复制代码
systemctl start redis

查看状态:

shell 复制代码
systemctl status redis

开机自启动:

shell 复制代码
systemctl enable redis

测试

使用RDM测试连接如下图

参考

相关推荐
xo198820111 小时前
鸿蒙人脸识别
redis·华为·harmonyos
初晴~2 小时前
【Redis分布式锁】高并发场景下秒杀业务的实现思路(集群模式)
java·数据库·redis·分布式·后端·spring·
Hello.Reader9 小时前
Redis热点数据管理全解析:从MySQL同步到高效缓存的完整解决方案
redis·mysql·缓存
C++忠实粉丝11 小时前
Redis 介绍和安装
数据库·redis·缓存
ClouGence12 小时前
Redis 到 Redis 数据迁移同步
数据库·redis·缓存
苏三说技术12 小时前
Redis 性能优化的18招
数据库·redis·性能优化
Tttian62212 小时前
基于Pycharm与数据库的新闻管理系统(2)Redis
数据库·redis·pycharm
言之。13 小时前
redis延迟队列
redis
hanbarger14 小时前
nosql,Redis,minio,elasticsearch
数据库·redis·nosql
弗罗里达老大爷14 小时前
Redis
数据库·redis·缓存