欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Redis单机版安装

程序员文章站 2022-05-20 14:57:26
...

Redis 支持单机版和集群,下面的步骤是单机版安装步骤

1. 安装gcc、gcc-c++

yum install gcc
yum install gcc-c++

1.1 由于是 c 语言编写,所以需要安装支持组件

2. 把压缩包上传到 linux 服务器上

2.1 示例位置: /opt/software/ 下

3. cd /opt/software

tar zxvf redis-3.0.6.tar.gz

3.1 进入到/opt/software 下 运行解压命令

4. # make

4.1 进入到解压后的目录编译

5. # make install PREFIX=/opt/module/redis

5.1 安装,设置安装路径为/opt/module/redis 下
5.2 进入到 src 下安装

6. # ./redis-server

6.1 前端启动,安装后不能进行其他操作
6.2 Ctrl+c 退出
6.3 命令要在 bin 目录下执行

7. cp /opt/software/redis-3.2.5/redis.conf ./

7.1 把解压目录下配置文件拷贝到安装目录的 bin 下

8. vi redis.conf

8.1 修改 bin 下 redis.conf
8.2 把 daemonize 由 no 修改成 yes,守护进程启动

9.# ps aux|grep redis

9.1 查看 redis 启动情况

10…/redis-server redis.conf

10.1 启动 redis 服务

11.# ./redis-cli shutdown

11.1 如果希望关闭,运行上面命令,不关闭不运行即可

12.# ./redis-cli

12.1 进入到自带客户端工具,测试 redis 是否可用
12.2 # set name ‘smallming’
12.3 添加一个 string ,key 为 name,value 为 smallming

13# get name

13.1 取出 name 中内容

14 配置启动脚本

vim redis.sh
#! /bin/bash

case $1 in
"start"){
               /opt/module/redis/bin/redis-server /opt/module/redis/bin/redis.conf
};;
"stop"){
               /opt/module/redis/bin/redis-cli shutdown
};;
esac

修改执行权限

chmod +x redis.sh

15. redis 无法从外部连接

直接到redis.conf中注释掉bind 参数,把 protected-mode 设置成了no
Redis单机版安装

相关标签: linux