redis3.2.1安装配置与使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis3.2.1安装配置与使用相关的知识,希望对你有一定的参考价值。


centos7安装redis3.2.1


一、下载:

 官网下载安装包,再上传到服务器,解压放到指定的目录。

  1. redis工具


 yum install -y ruby


2.需要手工下载并安装:


 [[email protected] download]$wget https://rubygems.global.ssl.fastly.net/gems/redis-3.2.1.gem

gem install -l ./redis-3.2.1.gem

 [[email protected] download]$ tar -zxvf redis-3.2.1.tar.gz

 [[email protected] download]$ mv redis-3.2.1 /opt/redis


二、安装:(root)


1、*安装redis前一定要先安装gcc 

   如果安装过程出现错误,重新解压安装


 [[email protected] ~]# yum install gcc

  

2、开始安装redis


 [[email protected] ~]# cd /opt/redis/


3 、#使用make命令安装


 [[email protected] redis]# make

 ...


4、#最后出现这两句话说明安装成功


 Hint: It‘s a good idea to run ‘make test‘ ;


 make[1]: 离开目录“/opt/redis/src”


5.修改配置文件redis.conf (根据个人使用需求情况而定)


vi  redis.conf


##修改配置文件中的下面选项

port  6371

daemonize yes

cluster-enabled yes

cluster-config-file nodes.conf

cluster-node-timeout 2000

appendonly yes

bind 10.10.0.101


save


6、启动redis:


 [[email protected] redis]# src/redis-server


7、#加&符号让redis在后台运行,然后Ctrl+C


 [[email protected] redis]# src/redis-server &


8、启动节点(根据个人使用需求情况而定)


 redis-server /opt/redis/conf/redis-6371.conf > /opt/redis/logs/redis-6371.log 2>&1 &

 redis-server /opt/redis/conf/redis-6372.conf > /opt/redis/logs/redis-6372.log 2>&1 &

 redis-server /opt/redis/conf/redis-6373.conf > /opt/redis/logs/redis-6373.log 2>&1 &

 redis-server /opt/redis/conf/redis-7371.conf > /opt/redis/logs/redis-7371.log 2>&1 &

 redis-server /opt/redis/conf/redis-7372.conf > /opt/redis/logs/redis-7372.log 2>&1 &

 redis-server /opt/redis/conf/redis-7373.conf > /opt/redis/logs/redis-7373.log 2>&1 &


8、使用redis客户端测试


 [[email protected] redis]# src/redis-cli 

 127.0.0.1:6371> set myKey helloworld

 OK

 127.0.0.1:6371> get myKey

 "helloworld"


到这里就安装完了!


三、redis集群设密码

 

  1. 单个节点登入redis,通过config set + config rewrite命令逐个节点设置密码


2.如果对集群设置密码,那么requirepass和masterauth都需要设置,否则发生主从切换时,就会遇到授权问题,可以模拟并观察日志


3.各个节点的密码都必须一致,否则Redirected就会失败


设置密码:


 $ ./redis-cli -h 192.168.4.201 -p 6371

192.168.4.201:6371> config set masterauth passwd      ###设置密码

OK

192.168.4.201:6371> config set requirepass passwd     ###设置密码,和master密码一致

OK

192.168.4.201:6371> config rewrite                   ###重新写入到配置文件

OK

192.168.4.201:6371> exit


#######无需重启redis,即时生效,配置完成######


本文出自 “Linux” 博客,转载请与作者联系!

以上是关于redis3.2.1安装配置与使用的主要内容,如果未能解决你的问题,请参考以下文章

redis3.2.1主从复制 及AOF开启方式

使用Redis存储Nginx+Tomcat负载均衡集群的Session

Redis的make,make test,make install单机多实例配置,以及API程序写数据!

TensorFlow的环境配置与安装以及在Pycharm的使用

Tomcat安装与配置

Linux(Ubuntu系统)python虚拟环境pipenv的安装配置与使用(详细版!!!)