- 解压:
执行cd /home/redis/redis,
执行tar xvzf redis-stable.tar.gz。
2.安装GCC依赖:
执行 cd /home/redis/redis/redis-stable
[[email protected]]# yum install gcc gcc-c++ #遇到选择,直接输入y即可 检查:gcc -v //用于查看gcc版本 3.然后安装
开始编译:PREFIX=/home/redis/redis make
检查编译结果:PREFIX=/home/redis/redis make test
安装:PREFIX=/home/redis/redis make install
若出现了error:jemalloc/jemalloc.h:没有那个文件或目录
解决方案:
执行命令:make MALLOC=libc
然后cd /home/redis/redis/bin, ./redis-server 启动Redis服务验证,如图所示即说明正确安装。
接着修改配置redis.conf文件
原文地址:https://www.cnblogs.com/hr-cmbc/p/11650137.html
时间: 2024-10-11 21:34:11