文章目录
下载文件
官方网站: https://www.redis.net.cn
- 拉取下载文件
wget http://download.redis.io/releases/redis-5.0.4.tar.gz
配置环境
配置GCC环境
1. 查看GCC是否已经安装
gcc -v
已安装GCC
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-redhat-linux
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 8.5.0 20210514 (Red Hat 8.5.0-4) (GCC)
未安装GCC
-bash: /usr/bin/gcc: No such file or directory
- 安装GCC组件
yum -y install gcc
- 更多GCC介绍
Redis安装
解压安装包
tar -xf redis-5.0.4.tar.gz
安装Redis
1. 跳转到安装文件根目录下
cd redis-5.0.4
2. 编译安装文件
默认编译
make install
编译到指定路径
# PREFIX=指定文件夹路径
make install PREFIX=/root/hsk/redis/redis6379
3. 执行安装包脚本设置服务相关配置
执行配置脚本
sh utils/install_server.sh
脚本输入数据详解
# 端口设置
# 默认编译时,可以跳过该输入
Please select the redis port for this instance: [6379]
# 设置为指定端口
# 例子:
Please select the redis port for this instance: [6379]6399
# 配置表设置
# 默认编译时,可以跳过该输入
Please select the redis config file name [/etc/redis/6399.conf]
# 设置指定的保存地址,脚本执行成功后会出现对应路劲文件
# 建议使用绝对地址
# 例子:
Please select the redis config file name [/etc/redis/6333.conf]/root/hsk/redis/redis6379/conf/redis.conf
# 日志输出设置
# 默认编译时,可以跳过该输入
Please select the redis log file name [/var/log/redis_6399.log]
# 设置指定的保存地址,脚本执行成功后会出现对应路劲文件
# 建议使用绝对地址
# 例子:
Please select the redis log file name [/var/log/redis_6333.log]/root/hsk/redis/redis6379/log/redis.log
# 数据文件存储位置
# 默认编译时,可以跳过该输入
Please select the data directory for this instance [/var/lib/redis/6399]
# 设置指定的保存地址,脚本执行成功后会出现对应路劲文件
# 建议使用绝对地址
# 例子:
Please select the data directory for this instance [/var/lib/redis/6399]/root/hsk/redis/redis6379/lib
# 服务启动配置
# 默认编译时,可以跳过该输入
Please select the redis executable path []
# 修改为指定的redis-server路径(指定编译路径下bin文件内redis-server)
# 建议使用绝对地址
# 例子:
Please select the redis executable path []/root/hsk/redis/redis6379/bin/redis-server
基础配置
配置外网访问
-
服务器端口暴露
-
修改监听配置(修改redis.conf)
# bind 127.0.0.1
# 监听所有地址
bind 0.0.0.0
# protected-mode yes
# 保护模式关闭
protected-mode no
# daemonize no
# 配置守护进程模式开启
daemonize yes
解析更多配置
服务控制
查看命令
# 查看服务脚本可以执行命令
# cat /etc/init.d/redis_端口
cat /etc/init.d/redis_6379
命令列表
# 服务停止
/etc/init.d/redis_6379 stop
# 服务启动
/etc/init.d/redis_6379 start
# 服务重启
/etc/init.d/redis_6379 restart
# 服务状态
/etc/init.d/redis_6379 status