纪念:站主于 2019 年 9 月完成了此开源实验,并将过程中的所有命令经过整理和注释以后,形成以下教程
软件准备:
在 Redis 的官网上下载软件 Redis:
正文:
步骤一:系统环境要求
1) 服务器的系统需要是 CentOS Linux 7 版本
2) 服务器系统需要有软件源
步骤二:安装 Redis 数据库
2.1 安装 Redis 数据库的相关依赖包
# yum -y install gcc gcc-c++ make
2.2 安装 Redis 数据库
2.2.1 解压安装包
# tar -zxf redis-5.0.5.tar.gz
(补充:这里要安装的 Redis 版本是 5.0.5)
2.2.2 进入安装包目录
# cd redis-5.0.5/
(补充:这里要安装的 Redis 版本是 5.0.5)
2.2.3 编译安装包
# make
2.2.4 安装软件包
# make install
2.2.5 进入配置目录
# cd utils/
2.2.6 配置软件包
# ./install_server.sh
Welcome to the redis service installer
This script will help you easily set up a running redis server
Please select the redis port for this instance: [6379]
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf]
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log]
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379]
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server]
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!