CentOS6.7下Redis4.0.6安装和Jedis2.8.1简单使用

一、redis的安装

这里演示的版本是Redis4.0.6,Linux系统是CentOS6.7,Jdk1.7,Jedis2.8.1

这是官方文档介绍的安装方式

下载,解压,编译:

$ wget http://download.redis.io/releases/redis-4.0.6.tar.gz $ tar xzf redis-4.0.6.tar.gz $ cd redis-4.0.6 $ make

二进制文件是编译完成后在src目录下,通过下面的命令启动Redis服务:

$ src/redis-server

你可以使用内置的客户端命令redis-cli进行使用:

$ src/redis-cli redis> set foo bar OK redis> get foo "bar"

CentOS6.7下Redis4.0.6安装和Jedis2.8.1简单使用

当然,个人不建议直接使用源码文件中的服务,make编译完成后,可以安装到指定目录:

make PREFIX=/usr/local/redis install

现在去刚刚tar包解压出来的源码目录中,拷贝一个redis.conf配置文件,放到/usr/local/redis/bin/目录下

以后在这个目录下使用就好了

CentOS6.7下Redis4.0.6安装和Jedis2.8.1简单使用

启动服务(暂时不使用自己刚才复制过来的redis.conf配置文件)

./redis-server

CentOS6.7下Redis4.0.6安装和Jedis2.8.1简单使用

服务端启动成功

启动客户端(暂时不设置ip,端口号和密码)

./redis-cli

客户端启动成功

二、Java程序中jedis操作redis

上面的方式只是一种小练习,我们现在通过Java程序用jedis来操作Linux服务器上的redis。

用maven来引入jedis:

<dependencies> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.8.1</version> </dependency> </dependencies>

Java代码:

public static void main(String[] args) {   // 虚拟机设置的ip,redis默认端口号 Jedis jedis = new Jedis("192.168.133.128", 6379); jedis.set("key01", "zhangsan"); jedis.set("key02", "lisi"); System.out.println(jedis.get("key01")); }

注意上面的代码是有问题的!

三、redis配置文件

上面的代码运行后,会报错

redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException: Connection refused: connect

连接超被拒绝了,这是因为,redis的访问ip默认是127.0.0.1

你需要在自己拷贝的redis.conf配置文件中修改:

CentOS6.7下Redis4.0.6安装和Jedis2.8.1简单使用

文档很长,可以通过"/"命令来查找"bind"字符串,按n搜索下一个

:/bind

把绑定的主机ip添加进去,之后启动redis服务的时候,需要手动加载配置文件

我的配置文件放在了和server服务的同一个目录里,所以启动服务时输入:

./redis-server redis.conf

注意啊:如果不输入后面的配置文件目录,那么该配置文件不起作用,会提示说启动默认的配置文件。

之后再次运行Java代码

又报错!!

redis.clients.jedis.exceptions.JedisDataException: DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions: 1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. 3) If you started the server manually just for testing, restart it with the '--protected-mode no' option. 4) Setup a bind address or an authentication password. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

这错报的好长。。

好心的博主帮你谷歌翻译了一下。

简单来说呢?就是给你提供了几个解决方案

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/09906a9e73b1ebc3b2398f4646323960.html