源码地址:https://github.com/redis/redis
下载地址:https://redis.io/docs/latest/operate/rs/release-notes/
配置安装环境:
1、查询gcc环境是否配备
gcc -v
2、gcc安装命令
yum -y install gcc- c++
3、解压
tar -zxvf redis-7.0.0.tar.gz
4、安装(默认安装目录是: /usr/local/bin)
make && make install
5、redis配置:redis.conf
1)daemonize no 是否后台启动改为:daemonize yes
2)关闭保护模式是让远程可以访问连接
protected-mode yes 去掉保护模式改为:protected-mode no
3)默认bind 127.0.0.1 改为 直接注释掉(默认bind127.0.0.1只能本机访问)或改成ip地址,否则影响远程ip连接
4)添加redis密码
requirepass Ba123456@
6、通过配置文件启动redis
redis-server /usr/local/service/redis/redis-7.0.0/myredis/redis7.conf
7、不看警告:Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
redis-cli -a Ba123456@ 2>/dev/null
8、关闭redis服务器
1)单实例关闭
redis-cli -a Ba123456@ shutdown
2)多实例关闭,指定端口关闭
redis-cli -p 6379 shutdown