当前位置:   article > 正文

redis下载与安装教程(centos下)

redis下载

一,redis下载

官网:

https://redis.io
  • 1

在这里插入图片描述

1.1上传到linux服务器上

我用filezila上传到/usr/local/src目录下
在这里插入图片描述

二,redis安装

2.1 安装依赖

yum install -y gcc tcl
  • 1

2.2 解压包

解压并用cd进入目录

tar -zxvf redis
  • 1

在这里插入图片描述

2.3 编译并安装

make && make install
  • 1

默认的安装路径在/usr/local/bin下
在这里插入图片描述
启动redis

redis-server
  • 1

在这里插入图片描述

2.4 指定配置启动

进入安装包/usr/local/src/redis-6.2.14
备份配置文件:

cp redis.conf redis.conf.bck
  • 1

编辑配置文件:

vim redis.conf
  • 1

修改配置:

//监听地址默认是127.0.0.1,会导致只能本机访问,修改为0.0.0.0则可以在任意IP访问
bind 0.0.0.0
//守护进程,改为yes后即可后台运行
daemonize yes
//密码,设置后访问redis必须输入密码
requirepass JLJ5225927
//监听的端口
port 6379
//工作目录,文件存储的位置  .是指当前目录
dir .
//数据库数量,设置为1,代表只能使用1个库,默认16个库,编号0-15
databases 1
//设置redis能够使用的最大内存
maxmemory 512mb
#日志文件
logfile "redis.log"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

启动:
用redis-server启动

redis-server /路径/redis.conf
  • 1

在这里插入图片描述
用:

ps -ef | grep redis
  • 1

查看进程
在这里插入图片描述

2.5 设置redis开机自启

新建系统服务类文件:

vi etc/systemd/system/redis.service
  • 1

内容如下:

[Unit]
Description=redis-server
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/bin/redis-server /usr/local/src/redis-6.2.14/redis.conf
PrivateTmp=true

[Install]
WantedBy=multi-user.target
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

重载系统服务:

systemctl daemon-reload
  • 1

启动redis:

systemctl start redis
  • 1

启动成功:
在这里插入图片描述

//停止redis:
systemctl stop redis
//查看redis状态:
systemctl status redis
//指定的服务设置为每次系统启动时自动启动
systemctl enable redis
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/441867
推荐阅读
相关标签
  

闽ICP备14008679号