一:CentOS7.6 安装redis4.0.11
1、安装
a、下载redis安装包
http://download.redis.io/releases/
b、解压
tar -xf redis-4.0.14.tar.gz -C /usr/local/
c、检查依赖
d、编译安装
make MALLOC=libc
可以执行make test 验证安装是否有错误
make install
2、启动服务并设置开启自启动
cp ./redis.conf /etc/redis/6379.conf
./src/redis-server /etc/redis/6379.conf
设置开启自启动
cd /usr/local/redis-4.0.14/utils
cp ./redis_init_script /etc/init.d/redis
Chkconfig redis on
3、链接验证
搭建完毕可以自行学习了
Redis安全加固参考文档:https://cloud.tencent.com/developer/article/1029223